mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-16 21:51:29 +08:00
![Up](/assets/img/avatar_default.png)
* add default values for CLI args * add development docker compose file * prevent crash if userdata dir does not exist * accounts, acccountStats * account stats and create db indices * compensations and daily runs * ensure uniqueness of daily seed * start on port 8001 by default for client parity * make generated schema match production * sort imports
15 lines
323 B
YAML
15 lines
323 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
|