goodgrief/docker-compose.prod.yml
2026-04-08 10:06:54 -07:00

23 lines
371 B
YAML

services:
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