-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
62 lines (62 loc) · 1.13 KB
/
compose.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: "3"
services:
databasepg:
image: postgres
# volumes:
# - db-chase:/var/lib/postgresql/data
environment:
- PGDATA=/var/lib/postgresql/data/pgdata
- POSTGRES_PASSWORD=postgrespw
- POSTGRES_HOST_AUTH_METHOD=trust
networks:
- cirkushumberto
redis:
image: redis
ports:
- 6379:6379
networks:
- cirkushumberto
mongo:
image: mongo
ports:
- 27017:27017
- 27018:27018
- 27019:27019
- 27020:27020
expose:
- 2017
- 2018
- 2019
- 2020
environment:
- MONGO_INITDB_ROOT_USERNAME=user
- MONGO_INITDB_ROOT_PASSWORD=password
- MONGO_INITDB_DATABASE=test
networks:
- cirkushumberto
neo4j:
image: neo4j
ports:
- 7474:7474
- 7475:7475
- 7687:7687
environment:
NEO4J_AUTH: neo4j/test_heslo
networks:
- cirkushumberto
app:
build: .
depends_on:
- databasepg
- redis
- neo4j
- mongo
ports:
- 5000:5000
networks:
- cirkushumberto
restart: on-failure
networks:
cirkushumberto:
volumes:
db-chase: