mirror of
https://github.com/DarrylNixon/ghostforge
synced 2024-04-22 06:27:20 -07:00
Darryl Nixon
3cc1dfcd14
students to try, review, and give feedback. Also, maybe it'll make actual development easier.
19 lines
No EOL
702 B
Bash
19 lines
No EOL
702 B
Bash
# DATABASE_* variables are used both to initially configure the
|
|
# ghostforge postgresql database and to later access the data from
|
|
# ghostforge execution.
|
|
DATABASE_USER=ghost
|
|
DATABASE_PASSWORD=
|
|
DATABASE_NAME=ghostforge
|
|
|
|
# GHOSTFORGE_*_WEB_PORT variables are used to determine what
|
|
# port the web interface is served on within the container (INTERNAL)
|
|
# and what port this will map to on the host (HOST).
|
|
#
|
|
# If you're using a dockerized reverse proxy, you may want to remove
|
|
# the port mapping entirely within docker-compose.yml.
|
|
GHOSTFORGE_HOST_WEB_PORT=1337
|
|
GHOSTFORGE_INTERNAL_WEB_PORT=1337
|
|
|
|
# GHOSTFORGE_ENV is used to determine debug verbosity
|
|
# Valid values are [prod, dev]
|
|
GHOSTFORGE_ENV=prod |