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: Start the Arcade services using Docker Compose:
```bash ```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. 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 ```bash
docker compose down docker compose down
docker compose up -p arcade docker compose up
``` ```
## Troubleshooting ## Troubleshooting

View file

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