goodgrief/docker-compose.prod.yml

27 lines
454 B
YAML
Raw Normal View History

2026-04-08 10:01:19 -07:00
services:
api:
volumes:
- ./assets/import-library:/app/assets/import-library:ro
2026-04-08 10:01:19 -07:00
admin:
build:
context: .
dockerfile: Dockerfile
target: admin-web
depends_on:
- api
ports:
- "4200:80"
restart: unless-stopped
submission:
build:
context: .
dockerfile: Dockerfile
target: submission-web
depends_on:
- api
ports:
- "4100:80"
restart: unless-stopped