-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.template
64 lines (51 loc) · 2.53 KB
/
.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#-------------------------------------------------------------------------------
# General
#-------------------------------------------------------------------------------
# Name Docker Compose will prepend to containers, networks, etc.
COMPOSE_PROJECT_NAME=confluence
# Time zone for application stack
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TIMEZONE=Etc/UTC
#-------------------------------------------------------------------------------
# Confluence
#-------------------------------------------------------------------------------
# Version of Confluence to build
# https://confluence.atlassian.com/doc/confluence-release-notes-327.html
CONFLUENCE_VERSION=6.14.1
# Port on which Confluence will be exposed on the Docker host
WEB_PORT=8090
# If running Confluence behind a reverse proxy, supply the following:
# The hostname clients use to access Confluence (e.g. confluence.domain.tld)
WEB_PROXY_HOSTNAME=
# The port clients use to access Confluence (e.g. 80 or 443)
WEB_PROXY_PORT=
# The URI scheme clients use to access Confluence (e.g. http or https)
WEB_PROXY_SCHEME=
#-------------------------------------------------------------------------------
# PostgreSQL
#-------------------------------------------------------------------------------
# Change the password to something secure!!
DB_POSTGRES_PASSWORD=confluence
# Optionally change the database name and user name
DB_POSTGRES_DB=confluence
DB_POSTGRES_USER=confluence
#-------------------------------------------------------------------------------
# Backup
#-------------------------------------------------------------------------------
# Function of the backup process (options below):
# - 'backup' (default) will backup the application stack; you should DISABLE the
# Confluence XML backup feature, per README.md
# - 'disable' will not perform any backup operations
# Be sure to read the comments for BACKUP_RETENTION below
BACKUP_OPERATION=backup
# Cron expression for when BACKUP_OPERATION will be performed (e.g. the default
# of '15 3 * * *' means daily at 3:15 AM)
BACKUP_CRON_EXP=15 3 * * *
# The number of backups to keep
# - If BACKUP_OPERATION is set to 'backup', all backups created via the
# Confluence XML backup feature will be deleted to conserve disk space (i.e.
# the BACKUP_RETENTION is basically set to '0' for Confluence XML backups)
# - If BACKUP_OPERATION is set to 'disable', BACKUP_RETENTION then applies to
# the XML backups created by Confluence, as Confluence does not have a
# built-in mechanism for cleaning up old backups
BACKUP_RETENTION=3