Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +26 -0
Dockerfile
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PORT=3000
|
| 2 |
+
PASSPHRASE=MYPASSPHRASE # Passphrase used to create encryption key
|
| 3 |
+
DATABASE_PATH=/root/.flowise
|
| 4 |
+
APIKEY_PATH=/root/.flowise
|
| 5 |
+
SECRETKEY_PATH=/root/.flowise
|
| 6 |
+
LOG_PATH=/root/.flowise/logs
|
| 7 |
+
|
| 8 |
+
# DATABASE_TYPE=postgres
|
| 9 |
+
# DATABASE_PORT=""
|
| 10 |
+
# DATABASE_HOST=""
|
| 11 |
+
# DATABASE_NAME="flowise"
|
| 12 |
+
# DATABASE_USER=""
|
| 13 |
+
# DATABASE_PASSWORD=""
|
| 14 |
+
# OVERRIDE_DATABASE=true
|
| 15 |
+
|
| 16 |
+
# FLOWISE_USERNAME=user
|
| 17 |
+
# FLOWISE_PASSWORD=1234
|
| 18 |
+
# DEBUG=true
|
| 19 |
+
# LOG_LEVEL=debug (error | warn | info | verbose | debug)
|
| 20 |
+
# TOOL_FUNCTION_BUILTIN_DEP=crypto,fs
|
| 21 |
+
# TOOL_FUNCTION_EXTERNAL_DEP=moment,lodash
|
| 22 |
+
|
| 23 |
+
# LANGCHAIN_TRACING_V2=true
|
| 24 |
+
# LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
|
| 25 |
+
# LANGCHAIN_API_KEY=your_api_key
|
| 26 |
+
# LANGCHAIN_PROJECT=your_project
|