mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-04-22 18:52:09 +00:00
29 lines
458 B
YAML
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
|