mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
19 lines
334 B
YAML
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
|