next-template/docker/docker-compose.yml
Florian Bouillon 54d8217133
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-26 00:17:30 +02:00

29 lines
458 B
YAML

version: "3"
services:
tcgdex:
build:
context: ../
dockerfile: Dockerfile
networks:
- network
depends_on:
- db
env_file:
- .env
- .env.local
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
env_file:
- .env
- .env.local
networks:
- network
volumes:
- ./.storage/mysql/:/var/lib/mysql
networks:
network:
external: false