goodgrief/docker-compose.prod.yml

23 lines
371 B
YAML
Raw Normal View History

2026-04-08 10:01:19 -07:00
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