You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/docker/docker_settings.sh.tmpl

22 lines
684 B

# If you want to have the image pushed to your private registry, put it here.
#REGISTRY="docker-registry.mydomain.org:5000"
# If you want to hav the image be pushed to your public dockerhub, just use your username instead
#REGISTRY="myUsername"
# If you don't uncomment one of the REGISTRY options above, then the image just won't get pushed.
# Set the name for this in your registry. You probably want to leave this as lychee
PROJECT_NAME="lychee"
# Specify where you want your volume data.
VOLUME_DIR="$HOME/lychee-volume"
# Specify the database details.
MYSQL_HOST="lychee.mydomain.com"
MYSQL_DB_NAME="lychee"
MYSQL_USER="lychee"
MYSQL_PASSWORD="myPassword"
MYSQL_PORT=3306