Skip to content

Commit

Permalink
* bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
sinfallas committed Dec 29, 2024
1 parent f77c0c9 commit c35b362
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ services:
- PDF_EXTRACT_IMAGES=true
- ENABLE_WEBSOCKET_SUPPORT=true
- WEBSOCKET_MANAGER=redis
- WEBSOCKET_REDIS_URL=redis://redis:6379/16
- WEBSOCKET_REDIS_URL=redis://redis:6379/1
depends_on:
- ollama
- redis
Expand Down Expand Up @@ -119,9 +119,9 @@ services:
ports:
- 5678:5678
volumes:
- ./storage:/home/node/.n8n
- ./n8n/storage:/home/node/.n8n
- ./n8n/backup:/backup
- ./shared:/data/shared
- ./n8n/shared:/data/shared
depends_on:
postgres:
condition: service_healthy
Expand Down Expand Up @@ -152,6 +152,12 @@ services:
- REDIS_ARGS=--save 20 1
volumes:
- ./redis:/data
healthcheck:
test: ["CMD", "redis-cli","ping"]
start_period: 5s
interval: 1s
timeout: 3s
retries: 5

# langfuse:
# image: ghcr.io/langfuse/langfuse:latest
Expand Down

0 comments on commit c35b362

Please sign in to comment.