@@ -5,9 +5,9 @@ services:
5
5
environment :
6
6
POSTGRES_DB : " zulip"
7
7
POSTGRES_USER : " zulip"
8
- # Note that you need to do a manual `ALTER ROLE` query if you
9
- # change this on a system after booting the postgres container
10
- # the first time on a host. Instructions are available in README.md.
8
+ # # Note that you need to do a manual `ALTER ROLE` query if you
9
+ # # change this on a system after booting the postgres container
10
+ # # the first time on a host. Instructions are available in README.md.
11
11
POSTGRES_PASSWORD : " REPLACE_WITH_SECURE_POSTGRES_PASSWORD"
12
12
volumes :
13
13
- " postgresql-14:/var/lib/postgresql/data:rw"
@@ -53,18 +53,18 @@ services:
53
53
build :
54
54
context : .
55
55
args :
56
- # Change these if you want to build zulip from a different repo/branch
56
+ # # Change these if you want to build zulip from a different repo/branch
57
57
ZULIP_GIT_URL : https://github.com/zulip/zulip.git
58
58
ZULIP_GIT_REF : " 9.2"
59
- # Set this up if you plan to use your own CA certificate bundle for building
59
+ # # Set this up if you plan to use your own CA certificate bundle for building
60
60
# CUSTOM_CA_CERTIFICATES:
61
61
ports :
62
62
- " 80:80"
63
63
- " 443:443"
64
64
environment :
65
- # See https://github.com/zulip/docker-zulip#configuration for
66
- # details on this section and how to discover the many
67
- # additional settings that are supported here.
65
+ # # See https://github.com/zulip/docker-zulip#configuration for
66
+ # # details on this section and how to discover the many
67
+ # # additional settings that are supported here.
68
68
DB_HOST : " database"
69
69
DB_HOST_PORT : " 5432"
70
70
DB_USER : " zulip"
@@ -73,8 +73,8 @@ services:
73
73
SETTING_RABBITMQ_HOST : " rabbitmq"
74
74
SETTING_REDIS_HOST : " redis"
75
75
SECRETS_email_password : " 123456789"
76
- # These should match RABBITMQ_DEFAULT_PASS, POSTGRES_PASSWORD,
77
- # MEMCACHED_PASSWORD, and REDIS_PASSWORD above.
76
+ # # These should match RABBITMQ_DEFAULT_PASS, POSTGRES_PASSWORD,
77
+ # # MEMCACHED_PASSWORD, and REDIS_PASSWORD above.
78
78
SECRETS_rabbitmq_password : " REPLACE_WITH_SECURE_RABBITMQ_PASSWORD"
79
79
SECRETS_postgres_password : " REPLACE_WITH_SECURE_POSTGRES_PASSWORD"
80
80
SECRETS_memcached_password : " REPLACE_WITH_SECURE_MEMCACHED_PASSWORD"
@@ -85,17 +85,33 @@ services:
85
85
SETTING_EMAIL_HOST : " " # e.g. smtp.example.com
86
86
SETTING_EMAIL_HOST_USER :
" [email protected] "
87
87
SETTING_EMAIL_PORT : " 587"
88
- # It seems that the email server needs to use ssl or tls and can't be used without it
88
+ # # It seems that the email server needs to use ssl or tls and can't be used without it
89
89
SETTING_EMAIL_USE_SSL : " False"
90
90
SETTING_EMAIL_USE_TLS : " True"
91
91
ZULIP_AUTH_BACKENDS : " EmailAuthBackend"
92
- # Uncomment this when configuring the mobile push notifications service
92
+ # # Uncomment this when configuring the mobile push notifications service
93
93
# SETTING_ZULIP_SERVICE_PUSH_NOTIFICATIONS: "True"
94
94
# SETTING_ZULIP_SERVICE_SUBMIT_USAGE_STATISTICS: "True"
95
95
96
- # If you're using a reverse proxy, you'll want to provide the
97
- # comma-separated set of IP addresses to trust here.
96
+ # # If you're using a reverse proxy, you'll want to provide the
97
+ # # comma-separated set of IP addresses to trust here.
98
98
# LOADBALANCER_IPS: "",
99
+
100
+ # # By default, files uploaded by users and profile pictures are
101
+ # # stored directly on the Zulip server. You can configure files
102
+ # # to be stored in Amazon S3 or a compatible data store
103
+ # # here. See docs at:
104
+ # #
105
+ # # https://zulip.readthedocs.io/en/latest/production/upload-backends.html
106
+ # #
107
+ # # If you want to use the S3 backend, you must set
108
+ # # SETTINGS_LOCAL_UPLOADS_DIR to None as well as configuring the
109
+ # # other fields.
110
+ # SETTINGS_LOCAL_UPLOADS_DIR: "None"
111
+ # SETTINGS_S3_AUTH_UPLOADS_BUCKET: ""
112
+ # SETTINGS_S3_AVATAR_BUCKET: ""
113
+ # SETTINGS_S3_ENDPOINT_URL: "None"
114
+ # SETTINGS_S3_REGION: "None"
99
115
volumes :
100
116
- " zulip:/data:rw"
101
117
ulimits :
0 commit comments