Files
env-docker/Config/GhostExample/example.env
T

63 lines
820 B
Bash

# This file needs copied to `.env` and have its values changes as needed.
## Docker ##
COMPOSE_BAKE=true
## End Docker ##
## Ghost ##
APP_NAME=ghost-app
URL='http://localhost:8368'
# Controls the Node.js runtime. Null is production.
MODE=
#MODE=development
## End Ghost ##
## Database ##
DB_NAME=ghost-db
DB_DATABASE=ghost
DB_ROOT_PASSWORD='db_root_password'
# Comment this if you do not want MariaDB to run upgrade scripts on new versions.
DB_AUTO_UPGRADE=1
## End Database ##
## Performance ##
# Standard Minimum
#CPU=0.10
#MEM=0.50G
#CPU_DB=1.00
#MEM_DB=1.00G
# Standard Recommended
#CPU=1.00
#MEM=1.00G
#CPU_DB=1.00
#MEM_DB=0.50G
# Tested Minimum - TBD
#CPU=0.35
#MEM=0.25G
#CPU_DB=0.15
#MEM_DB=0.25G
# Tested Recommended - TBD
CPU=0.85
MEM=0.65G
CPU_DB=0.15
MEM_DB=0.35G
## End Performance ##