fabro/docker/docker-compose.yaml
Bryan Helmkamp 743786e741 Move Dockerfile, docker-compose.yaml, and entrypoint.ts into docker/
Update build context, dockerfile path, and volume mounts in
docker-compose.yaml to account for the new location.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 13:09:54 -04:00

34 lines
581 B
YAML

services:
api:
image: arc
build:
context: ..
dockerfile: docker/Dockerfile
platforms:
- linux/arm64
pull_policy: never
command: ["api"]
ports:
- "3000:3000"
web:
image: arc
pull_policy: never
command: ["web"]
ports:
- "5173:5173"
environment:
- ARC_DEMO=1
volumes:
- ./demo-server.toml:/root/.arc/server.toml:ro
depends_on:
- api
docs:
image: arc
pull_policy: never
command: ["docs"]
ports:
- "3333:3333"
volumes:
- ../docs:/app/docs:ro