Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (25 sloc)
752 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tag used for the ghost docker image | |
export GHOST_IMAGE_TAG=3.2.0-alpine | |
# Tag used for the MariaDB docker image | |
export MARIADB_IMAGE_TAG=10.4 | |
# Configure the blog url in ghost | |
export BLOG_URL=http://127.0.0.1 | |
# Root password used for MariaDB | |
export MYSQL_ROOT_PASSWORD=dummy | |
# User password used by ghost to connect to the database | |
export MYSQL_PASSWORD=ghost1234 | |
# Host folders used by the containers | |
export MYSQL_HOST_PATH=~/mariadb_data | |
export GHOST_HOST_PATH=~/ghost | |
export NGINX_HOST_PATH=~/nginx_test | |
# Exposed host ports | |
export NGINX_HTTP_PORT=80 | |
export NGINX_HTTPS_PORT=443 | |
# Mail configuration | |
export MAIL_TRANSPORT= | |
export MAIL_SERVICE= | |
export MAIL_USER= | |
export MAIL_PASSWORD= | |
export MAIL_HOST= | |
export MAIL_PORT= | |
export MAIL_SECURE= |