Docker compose fixes (#226)

This commit is contained in:
Sterling Dreyer 2025-01-24 10:29:15 -08:00 committed by GitHub
parent a1db8a9f33
commit e78ff00831
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View file

@ -50,7 +50,7 @@ ANTHROPIC_API_KEY=your_anthropic_api_key_here
Start the Arcade services using Docker Compose:
```bash
docker compose up -p arcade
docker compose up
```
This command will build and start all the services defined in the `docker-compose.yml` file and make their ports available to your host machine.
@ -103,7 +103,7 @@ After making changes to the configuration, restart the services:
```bash
docker compose down
docker compose up -p arcade
docker compose up
```
## Troubleshooting

View file

@ -7,7 +7,7 @@ services:
volumes:
- ./docker.engine.yaml:/bin/engine.yaml
- ./.env:/bin/.env
- ./arcade-engine.sqlite3:/app/arcade-engine.sqlite3
- ./db/:/app/
ports:
- "9099:9099"
depends_on:
@ -20,8 +20,7 @@ services:
command: /bin/arcade-engine --config /bin/engine.yaml --env /bin/.env --migrate
worker:
# image: ghcr.io/arcadeai/arcade-ai:latest
image: arcade-worker:0.1.0
image: ghcr.io/arcadeai/worker:latest
container_name: arcade-worker
ports:
- "8002:8002"