-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
81 lines (74 loc) · 1.41 KB
/
docker-compose.yml
File metadata and controls
81 lines (74 loc) · 1.41 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
version: '3'
services:
neo:
container_name: dbneo
image: neo4j
restart: always
environment:
NEO4J_AUTH: none
ports:
- 11102:7687
- 8100:7474
mongo:
container_name: dbmongo
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: g)2gH4G)4(3(
#ports:
# - 11101:27017
mongo-express:
container_name: mongoWeb
image: mongo-express
restart: always
ports:
- 8101:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: g)2gH4G)4(3(
ME_CONFIG_MONGODB_URL: mongodb://root:g)2gH4G)4(3(@mongo:27017/
depends_on:
- mongo
zol1:
container_name: zol1
build:
context: .
dockerfile: ./Dockerfile_zol1
restart: always
environment:
- TZ=Asia/Seoul
ports:
- 5050:5050
depends_on:
- neo
links:
- neo
zol2:
container_name: zol2
build:
context: .
dockerfile: ./Dockerfile_zol2
restart: always
environment:
- TZ=Asia/Seoul
ports:
- 5051:5050
depends_on:
- zol3
links:
- neo
- mongo
zol3:
container_name: zol3
build:
context: .
dockerfile: ./Dockerfile_zol3
restart: always
environment:
- TZ=Asia/Seoul
depends_on:
- zol1
- mongo
links:
- mongo