fix: missing depends_on

This commit is contained in:
Javier Martinez 2024-08-12 12:45:01 +02:00
parent 89477ea9d3
commit 800dcc2160
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ services:
context: . context: .
dockerfile: Dockerfile.ollama dockerfile: Dockerfile.ollama
volumes: volumes:
- ./local_data/:/home/worker/app/local_data - ./local_data:/home/worker/app/local_data
ports: ports:
- "8001:8001" - "8001:8001"
environment: environment:
@ -27,6 +27,8 @@ services:
- ollama-cpu - ollama-cpu
- ollama-cuda - ollama-cuda
- ollama-api - ollama-api
depends_on:
- ollama
# Private-GPT service for the local mode # Private-GPT service for the local mode
# This service builds from a local Dockerfile and runs the application in local mode. # This service builds from a local Dockerfile and runs the application in local mode.