mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-04 22:13:31 +00:00
Added docker-compose.yml
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
includes/zulip-puppet-config
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
LICENSE
|
LICENSE
|
||||||
README
|
README
|
||||||
README.md
|
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