You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
YAML
15 lines
323 B
YAML
6 months ago
|
services:
|
||
|
db:
|
||
|
image: mariadb:11
|
||
|
container_name: pokerogue-db-local
|
||
|
restart: on-failure
|
||
|
environment:
|
||
|
MYSQL_ROOT_PASSWORD: admin
|
||
|
MYSQL_DATABASE: pokeroguedb
|
||
|
MYSQL_USER: pokerogue
|
||
|
MYSQL_PASSWORD: pokerogue
|
||
|
ports:
|
||
|
- "3306:3306"
|
||
|
volumes:
|
||
|
- ./.data/db:/var/lib/mysql
|