20 lines
448 B
YAML
20 lines
448 B
YAML
services:
|
|
web:
|
|
image: git.georgew.dev/georgew/mission-control-web:latest
|
|
container_name: mc-web
|
|
restart: always
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
|
|
worker:
|
|
image: git.georgew.dev/georgew/mission-control-worker:latest
|
|
container_name: mc-worker
|
|
restart: always
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production |