-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
68 lines (64 loc) · 1.58 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
67
68
version: '3'
services:
shop-api:
container_name: 'shop-api'
image: 'shop-api'
build:
context: .
dockerfile: API/Shop.API/Dockerfile
ports:
- '9080:80'
depends_on:
- 'postgres'
- 'rabbitmq'
profiles: ["full", "api"]
shop-inventory-api:
container_name: 'shop-inventory'
image: 'shop-inventory'
build:
context: .
dockerfile: Inventory/Shop.Inventory.API/Dockerfile
ports:
- '7080:80'
depends_on:
- 'postgres'
- 'rabbitmq'
profiles: ["full", "inventory"]
postgres:
ports:
- '7777:5432'
container_name: shop-db
image: 'postgres:12'
volumes:
- ./postgres:/var/lib/postgresql/data
environment:
- POSTGRES_USER=shop
- POSTGRES_PASSWORD=shop
- POSTGRES_DB=shop
profiles: ["infra", "full", "api"]
postgres-inventory:
ports:
- '7778:5432'
container_name: shop-inventory-db
image: 'postgres:12'
volumes:
- ./postgres-inventory:/var/lib/postgresql/data
environment:
- POSTGRES_USER=shop
- POSTGRES_PASSWORD=shop
- POSTGRES_DB=shop-inventory
profiles: ["infra", "full", "inventory"]
rabbitmq:
ports:
- '15672:15672'
- '5672:5672'
container_name: shop-mq
image: 'rabbitmq:3-management'
hostname: shop-mq
volumes:
- ./.containers/queue/data/:/var/lib/rabbitmq
- ./.containers/queue/log/:/var/log/rabbitmq
environment:
RABBIT_MQ_DEFAULT_USER: guest
RABBIT_MQ_DEFAULT_PASS: guest
profiles: ["infra", "full", "api", "inventory"]