2018-06-03 22:11:12 +00:00
|
|
|
#########################
|
|
|
|
# Script settings #
|
|
|
|
#########################
|
|
|
|
|
|
|
|
# Create a postgresql container?
|
|
|
|
SCRIPT_DEPLOY_POSTGRES=true
|
|
|
|
|
|
|
|
# Specify the server that is used as a reverse-proxy
|
|
|
|
SCRIPT_USE_PROXY=traefik
|
|
|
|
|
|
|
|
# Enable internal SSL support?
|
|
|
|
SCRIPT_ENABLE_SSL=false
|
|
|
|
|
|
|
|
# The port to serve HTTP on when running in nginx/apache-mode
|
|
|
|
SCRIPT_PORT_HTTP=80
|
|
|
|
|
|
|
|
# The port to serve HTTPs on when running in nginx/apache-mode
|
|
|
|
SCRIPT_PORT_HTTPS=443
|
|
|
|
|
|
|
|
# The ip to bind to in nginx/apache-mode
|
|
|
|
SCRIPT_BIND_IP=0.0.0.0
|
|
|
|
|
|
|
|
#########################
|
|
|
|
# Docker settings #
|
|
|
|
#########################
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-04-07 20:29:55 +00:00
|
|
|
# The docker network to bind to.
|
2018-06-03 22:11:12 +00:00
|
|
|
# In traefik-mode this should be the same network that your
|
|
|
|
# traefik-container is connected to or a network that is interconnected
|
|
|
|
# with traefik's network. In manual, apache or nginx mode this value may be empty or set to any other alphanumeric value.
|
|
|
|
# (Defaults to something like "pleroma_docker_1" if empty)
|
2018-08-21 01:19:42 +00:00
|
|
|
DOCKER_NETWORK=prod
|
2018-04-07 20:29:55 +00:00
|
|
|
|
|
|
|
# The directory where all containers store their data.
|
|
|
|
# Can be a relative path, "~/...", or absolute.
|
2018-06-03 22:11:12 +00:00
|
|
|
# Named docker volumes are currently not supported.
|
|
|
|
DOCKER_DATADIR=./data
|
|
|
|
|
2018-08-20 21:06:34 +00:00
|
|
|
# The uid/gid used by pleroma.
|
2018-08-21 01:19:42 +00:00
|
|
|
# You should probably set this to the same
|
|
|
|
# uid/guid that cloned the pleroma-docker repo.
|
|
|
|
# This way modding pleroma becomes a lot easier.
|
2018-08-20 21:06:34 +00:00
|
|
|
DOCKER_UID=1000
|
|
|
|
DOCKER_GID=1000
|
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
###########################
|
|
|
|
# Database settings #
|
|
|
|
###########################
|
2018-04-07 20:29:55 +00:00
|
|
|
|
2018-12-24 22:20:17 +00:00
|
|
|
# When you use the managed postgres container
|
|
|
|
# those will be the credentials the container is generated with.
|
2018-04-08 14:15:44 +00:00
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
POSTGRES_DB=pleroma
|
|
|
|
POSTGRES_USER=pleroma
|
|
|
|
POSTGRES_PASSWORD=pleroma
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
##########################
|
|
|
|
# Pleroma Settings #
|
|
|
|
##########################
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
# The environment to use (dev/prod/test)
|
|
|
|
MIX_ENV=prod
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
# The git tag, revision, or branch to check out on build
|
|
|
|
PLEROMA_VERSION=develop
|
2018-12-28 00:44:33 +00:00
|
|
|
|
|
|
|
# Domain to run at (only relevant for traefik mode)
|
|
|
|
PLEROMA_URL=coolsite.moe
|
|
|
|
PLEROMA_MEDIA_PROXY_URL=cdn.coolsite.moe
|