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.
22 lines
453 B
YAML
22 lines
453 B
YAML
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
|
|
|
|
redis:
|
|
image: redis:7
|
|
container_name: pokerogue-redis-local
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6379:6379"
|