fix: remove depends_on and fix prompt display in install script

- Remove depends_on from docker-compose.yml (services handle reconnection)
- This allows the override to disable ollama without errors
- Fix prompt display when running via curl | bash (print to stderr)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-01 08:23:27 +01:00
parent 2bd17a3388
commit 4e02a27924
2 changed files with 3 additions and 8 deletions

View File

@@ -11,9 +11,6 @@ services:
environment:
- OLLAMA_API_URL=http://ollama:11434
- BACKEND_URL=http://backend:9090
depends_on:
- ollama
- backend
networks:
- vessel-network
restart: unless-stopped
@@ -30,8 +27,6 @@ services:
- PORT=9090
volumes:
- backend-data:/app/data
depends_on:
- ollama
networks:
- vessel-network
restart: unless-stopped