mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
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>
34 lines
581 B
YAML
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
|