Update example docker compose file to use environment variables

This commit is contained in:
Katzteam 2024-09-28 01:08:53 -04:00
parent 9f2a5c0d30
commit 9e20f3caa7

View File

@ -1,8 +1,15 @@
services:
server:
command: --debug --dbaddr db --dbuser pokerogue --dbpass pokerogue --dbname pokeroguedb --gameurl http://localhost:8000 --callbackurl http://localhost:8001
server:
image: ghcr.io/pagefaultgames/rogueserver:master
restart: unless-stopped
environment:
debug: true
dbaddr: db
dbuser: pokerogue
dbpass: pokerogue
dbname: pokeroguedb
gameurl: http://localhost:8000
callbackurl: http://localhost:8001
depends_on:
db:
condition: service_healthy