-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (42 loc) · 1.02 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: "3"
#
# Redis
#
services:
redis1:
image: redis:3.0.3
restart: always
ports:
- "6379:6379"
entrypoint: [ "/usr/local/bin/redis-server", "--bind", "0.0.0.0", "--port", "6379", "--maxclients", "200", "--dir", "/tmp", "--save", ""]
mongo1:
image: registry.gitlab.com/gitlab-org/gitter/webapp/mongo:latest
restart: always
volumes:
- gitter-mongodb:/data/db2
ports:
- "27017:27017"
mongo-express:
image: mongo-express
links:
- mongo1:mongo
ports:
- "8081:8081"
neo4j:
image: neo4j:2.3
restart: always
ports:
- "7474:7474"
environment:
NEO4J_AUTH: none
# The official elasticsearch:1.4.2 image with mapper-attachments and river-mongodb plugins
# https://github.com/soldotno/elasticsearch-river-mongodb/blob/master/Dockerfile
elasticsearch:
image: registry.gitlab.com/gitlab-org/gitter/webapp/elasticsearch:latest
ports:
- "9200:9200"
- "9300:9300"
links:
- mongo1
volumes:
gitter-mongodb: