Files
docker/hidche/docker-compose.yml
T
2023-02-25 19:36:09 +09:00

85 lines
1.2 KiB
YAML

version: '3.2'
services:
db:
build: ./db
restart: always
volumes:
- db:/var/lib/mysql
env_file:
- account.env
- game.env
web:
build: ./web
restart: always
#ports:
# - 8080:80
volumes:
- hidche:/var/www/html:ro
- board:/var/www/board:ro
app:
build: ./app
restart: always
volumes:
- hidche:/var/www/html
env_file:
- game.env
depends_on:
- db
- web
board:
build: ./board
restart: always
volumes:
- board:/var/www/board
env_file:
- game.env
depends_on:
- db
- web
install:
build: ./install
restart: "no"
volumes:
- hidche:/var/www/html
env_file:
- account.env
- game.env
depends_on:
- app
- db
- web
backup:
build: ./backup
restart: "no"
#restart: always
#command:
#- crond -f -L /dev/stdout
volumes:
- hidche:/var/www/html:ro
- backup:/var/backup
env_file:
- account.env
- game.env
depends_on:
- app
- db
cron:
build: ./cron
restart: always
volumes:
- hidche:/var/www/html
depends_on:
- app
volumes:
db:
hidche:
board:
backup: