Skip to content

Instantly share code, notes, and snippets.

@cmcneil
Created October 24, 2015 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmcneil/ff8b0ec62339a18ba3fc to your computer and use it in GitHub Desktop.
Save cmcneil/ff8b0ec62339a18ba3fc to your computer and use it in GitHub Desktop.
Here's my docker-compose.yml
database:
image: "quay.io/galexrt/zulip-postgresql-tsearchextras:latest"
environment:
DB_NAME: zulip
DB_USER: zulip
DB_PASS: zulip
DB_ROOT_PASS: "zulip"
volumes:
- "/opt/docker/zulip/postgresql/data:/var/lib/postgresql:rw"
memcached:
image: "quay.io/sameersbn/memcached:latest"
restart: always
rabbitmq:
image: "docker.io/rabbitmq:3.5.5"
hostname: zulip-rabbit
restart: always
environment:
RABBITMQ_DEFAULT_USER: "zulip"
RABBITMQ_DEFAULT_PASS: "zulip"
camo:
image: "quay.io/galexrt/camo:latest"
restart: always
redis:
image: "quay.io/sameersbn/redis:latest"
volumes:
- "/opt/docker/zulip/redis:/var/lib/redis:rw"
zulip:
image: "quay.io/galexrt/zulip:v1.3.7"
ports:
- "8080:80"
- "8443:443"
links:
- database
- memcached
- rabbitmq
- camo
- redis
environment:
DB_HOST: "database"
MEMCACHED_HOST: "memcached"
REDIS_HOST: "redis"
RABBITMQ_HOST: "rabbitmq"
RABBITMQ_PASS: "zulip"
ZULIP_USER_EMAIL: "example@convox.org"
ZULIP_USER_PASS: "zulip"
ZULIP_USER_DOMAIN: "convox.org"
ZULIP_AUTH_BACKENDS: "EmailAuthBackend"
ZULIP_SECRETS_email_password: "12345"
ZULIP_SETTINGS_EXTERNAL_HOST: "convox.org"
ZULIP_SETTINGS_ZULIP_ADMINISTRATOR: "admin@convox.org"
ZULIP_SETTINGS_ADMIN_DOMAIN: "convox.org"
ZULIP_SETTINGS_NOREPLY_EMAIL_ADDRESS: "noreply@convox.org"
ZULIP_SETTINGS_DEFAULT_FROM_EMAIL: "Zulip <noreply@convox.org>"
ZULIP_SETTINGS_EMAIL_HOST: "smtp.convox.org"
ZULIP_SETTINGS_EMAIL_HOST_USER: "noreply@convox.org"
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