24 lines
496 B
YAML
24 lines
496 B
YAML
services:
|
|
web:
|
|
image: git.georgew.dev/georgew/mission-control-web:latest
|
|
container_name: mc-web
|
|
restart: always
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
networks:
|
|
- web_traffic
|
|
|
|
worker:
|
|
image: git.georgew.dev/georgew/mission-control-worker:latest
|
|
container_name: mc-worker
|
|
restart: always
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
|
|
networks:
|
|
web_traffic:
|
|
external: true |