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.
25 lines
668 B
YAML
25 lines
668 B
YAML
6 months ago
|
services:
|
||
|
dev:
|
||
|
image: mcr.microsoft.com/devcontainers/go:1.22
|
||
|
container_name: pokerogue-devcontainer-code
|
||
|
volumes:
|
||
|
- ../..:/workspaces:cached
|
||
|
network_mode: service:db
|
||
|
command: sleep infinity
|
||
|
depends_on:
|
||
|
- db
|
||
|
|
||
|
db:
|
||
|
image: mariadb:11
|
||
|
container_name: pokerogue-devcontainer-db
|
||
|
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
|