splatoon3.ink/docker-compose.yml
Matt Isenhower 4d02454231 Add cron
2022-09-01 17:36:28 -07:00

19 lines
334 B
YAML

version: "3.8"
services:
app:
build: docker/app
init: true
restart: unless-stopped
working_dir: /app
volumes:
- ./:/app
command: npm run cron
nginx:
image: nginx
restart: unless-stopped
volumes:
- ./docker/nginx/conf.d:/etc/nginx/conf.d:ro
- ./dist:/usr/share/nginx/html:ro