forked from LelabsTeam/mono-challenge-intention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (66 loc) · 1.78 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
63
64
65
66
version: '3'
services:
intentions-service:
build: './intentions'
container_name: intentions-service
ports:
- 5000:5000
depends_on:
- challenge-intention-db
# - challenge-intention-messenger
- products-service
volumes:
- ./intentions/src:/app
env_file:
- .env
networks:
- challenge-intention-network
products-service:
build: './products'
container_name: products-service
ports:
- 3001:3001
depends_on:
- challenge-intention-db
# - challenge-intention-messenger
volumes:
- ./products:/app
networks:
- challenge-intention-network
challenge-intention-db:
image: "postgres:12"
container_name: challenge-intention-db
hostname: challenge-intention-db-postgres
restart: "always"
ports:
- "5432:5432"
volumes:
- challenge-intention-db:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: "${CHALLENGE_INTENTION_DB_PASSWORD}"
POSTGRES_USER: "${CHALLENGE_INTENTION_DB_USER}"
POSTGRES_DB: "${CHALLENGE_INTENTION_DB_NAME}"
# PGDATA: /var/lib/postgresql/data
networks:
- challenge-intention-network
# challenge-intention-messenger:
# image: rabbitmq:3-management
# container_name: challenge-intention-messenger
# hostname: challenge-intention-messenger
# networks:
# - challenge-intention-network
# ports:
# - 5672:5672
# - 25676:25676
# - 15672:15672
# environment:
# - RABBITMQ_DEFAULT_USER="${CHALLENGE_INTENTION_MESSENGER_USER}"
# - RABBITMQ_DEFAULT_PASS="${CHALLENGE_INTENTION_MESSENGER_PASS}"
volumes:
intentions-service:
products-service:
challenge-intention-db:
# challenge-intention-messenger:
networks:
challenge-intention-network:
driver: bridge