mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-23 17:11:29 +08:00
Update example docker compose file to use environment variables (#56)
This commit is contained in:
parent
7b6cf6fe4e
commit
ad43cccb41
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user