mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-03 21:43:26 +00:00
Added docker-compose.yml
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
.git
|
||||
.gitignore
|
||||
includes/zulip-puppet-config
|
||||
AUTHORS
|
||||
LICENSE
|
||||
README
|
||||
README.md
|
||||
includes/zulip-puppet-config
|
||||
docker-compose.yml
|
||||
|
||||
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
database:
|
||||
image: "docker.io/sameersbn/postgresql:9.4-4"
|
||||
environment:
|
||||
DB_USER: zulip
|
||||
DB_PASS: zulip
|
||||
DB_NAME: zulip
|
||||
volumes:
|
||||
- "/opt/postgresql/data:/var/lib/postgresql:rw"
|
||||
memcache:
|
||||
image: "sameersbn/memcached:latest"
|
||||
restart: always
|
||||
rabbitmq:
|
||||
image: "rabbitmq:3.5.5"
|
||||
hostname: zulip-rabbit
|
||||
camo:
|
||||
image: "docker.io/nerdzeu/docker-camo:latest"
|
||||
zulip:
|
||||
image: "docker.io/galexrt/zulip:latest"
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
Reference in New Issue
Block a user