Created
May 3, 2016 14:10
-
-
Save reyman/6aabff033d38ef7a4f8a8db5c675b04b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| database: | |
| image: "quay.io/galexrt/zulip-postgresql-tsearchextras:latest" | |
| environment: | |
| DB_NAME: zulip | |
| DB_USER: zulip | |
| DB_PASS: zulip | |
| volumes: | |
| - "/opt/docker/zulip/postgresql/data:/var/lib/postgresql:rw" | |
| memcached: | |
| image: "quay.io/sameersbn/memcached:latest" | |
| restart: always | |
| rabbitmq: | |
| image: "rabbitmq:3.5.5" | |
| hostname: zulip-rabbit | |
| restart: always | |
| environment: | |
| RABBITMQ_DEFAULT_USER: "zulip" | |
| RABBITMQ_DEFAULT_PASS: "zulip" | |
| redis: | |
| image: "quay.io/sameersbn/redis:latest" | |
| volumes: | |
| - "/opt/docker/zulip/redis:/var/lib/redis:rw" | |
| zulip: | |
| image: "galexrt/zulip:dev" | |
| ports: | |
| - "80" | |
| - "443" | |
| links: | |
| - database | |
| - memcached | |
| - rabbitmq | |
| - redis | |
| environment: | |
| DEBUG: "True" | |
| DB_HOST: "database" | |
| DB_USER: "zulip" | |
| DB_PASS: "zulip" | |
| SECRETS_email_password: "xxx" | |
| SECRETS_rabbitmq_password: "zulip" | |
| SETTING_MEMCACHED_LOCATION: "memcached:11211" | |
| SETTING_RABBITMQ_HOST: "rabbitmq" | |
| SETTING_REDIS_HOST: "redis" | |
| SETTING_EXTERNAL_HOST: "team.comnmodel.org" | |
| SETTING_ZULIP_ADMINISTRATOR: "xxx@gmail.com" | |
| SETTING_ADMIN_DOMAIN: "comnmodel.org" | |
| SETTING_NOREPLY_EMAIL_ADDRESS: "noreply@comnmodel.org" | |
| SETTING_DEFAULT_FROM_EMAIL: "Zulip <noreply@comnmodel.org>" | |
| SETTING_EMAIL_HOST: "smtp.gmail.com" | |
| SETTING_EMAIL_HOST_USER: "xxx@gmail.com" | |
| ZULIP_AUTH_BACKENDS: "ZulipLDAPAuthBackend" | |
| ZULIP_USER_EMAIL: "reyman64@gmail.com" | |
| ZULIP_USER_PASS: "xxx" | |
| ZULIP_USER_DOMAIN: "comnmodel.org" | |
| ZULIP_LDAP_ENABLED: "True" | |
| SETTING_AUTH_LDAP_SERVER_URI: "ldap://51.255.47.40:389" | |
| SETTING_AUTH_LDAP_BIND_DN: "cn=admin,dc=comnmodel,dc=org" | |
| SETTING_AUTH_LDAP_BIND_PASSWORD: "xxx" | |
| SETTING_AUTH_LDAP_USER_SEARCH: "LDAPSearch(\"ou=Users,dc=comnmodel,dc=org\",ldap.SCOPE_SUBTREE,\"(mail=%(user)s)\")" | |
| SETTING_LDAP_APPEND_DOMAIN: "None" | |
| SETTING_SECURE_PROXY_SSL_HEADER: ('HTTP_X_FORWARDED_PROTO', 'https') | |
| VIRTUAL_HOST: "team.comnmodel.org" | |
| VIRTUAL_PROTO: "https" | |
| VIRTUAL_PORT: "443" | |
| volumes: | |
| - "/opt/docker/zulip/zulip:/data:rw" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment