diff --git a/Config/GhostExample/example.env b/Config/GhostExample/example.env index 71a717c..6eb3101 100644 --- a/Config/GhostExample/example.env +++ b/Config/GhostExample/example.env @@ -1 +1,58 @@ -TBD! +# This file needs copied to `.env` and have its values changes as needed. + +## Docker ## + +COMPOSE_BAKE=true + +## End Docker ## + + +## Ghost ## + +# TBD/TODO + +## End Ghost ## + + +## Database ## + +MARIADB_DATABASE='ghost' + +#MARIADB_USER='db_user' +#MARIADB_PASSWORD='database_password' + +MARIADB_ROOT_PASSWORD='db_root_password' + +# Comment this if you do not want MariaDB to run upgrade scripts on new versions. +MARIADB_AUTO_UPGRADE=1 + +## End Database ## + + +## Performance ## + +# Standard Minimum +#GHOST_CPU=1.00 +#GHOST_MEM=2.00G +#GHOST_CPU_DB=1.00 +#GHOST_MEM_DB=1.00G + +# Standard Recommended +#GHOST_CPU=1.00 +#GHOST_MEM=4.00G +#GHOST_CPU_DB=1.00 +#GHOST_MEM_DB=0.50G + +# Tested Minimum +#GHOST_CPU=0.35 +#GHOST_MEM=0.35G +#GHOST_CPU_DB=0.15 +#GHOST_MEM_DB=0.15G + +# Tested Recommended +## GHOST_CPU=0.50 +## GHOST_MEM=0.50G +## GHOST_CPU_DB=0.25 +## GHOST_MEM_DB=0.25G + +## End Performance ##