-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
62 lines (55 loc) · 1.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: '3.7'
services:
# Connecting storages
redis-storage:
image: redis:alpine
volumes:
- ./redis:/data
mongo-storage:
image: mongo
restart: always
ports:
- 27017:27017
expose:
- 27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: qwerty
volumes:
- ./mongo:/data/db
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: qwerty
ME_CONFIG_MONGODB_URL: mongodb://root:qwerty@mongo-storage:27017/?authMechanism=DEFAULT
depends_on:
- mongo-storage
# Connecting main app
books:
build: ./booksService
environment:
- PORT=6000
- COUNTER_SERVICE_HOST=books-counter
- COUNTER_SERVICE_PORT=6010
- MONGO_HOST=mongo-storage
ports:
- 80:6000
depends_on:
- books-counter
- mongo-storage
# Connecting services
books-counter:
build: ./booksCounterService
environment:
- PORT=6010
- REDIS_HOST=redis-storage
ports:
- "6010:6010"
depends_on:
- redis-storage
volumes:
mongo: