-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
59 lines (58 loc) · 1.36 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
version: '3.1'
services:
rabbitmq:
image: docker.io/bitnami/rabbitmq:3.9
restart: always
ports:
- 4369:4369
- 5551:5551
- 5552:5552
- 5672:5672
- 25672:25672
- 15672:15672
environment:
- RABBITMQ_SECURE_PASSWORD=no
- RABBITMQ_USERNAME=admin
- RABBITMQ_PASSWORD=admin
volumes:
- 'rabbitmq_data:/bitnami/rabbitmq/mnesia'
postgresql:
image: docker.io/bitnami/postgresql:14
restart: always
ports:
- 5432:5432
volumes:
- 'postgresql_data:/bitnami/postgresql'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- POSTGRESQL_USERNAME=postgres
- POSTGRESQL_PASSWORD=postgres
- POSTGRESQL_DATABASE=postgres
broker:
image: docker.io/robsonkades/broker:1.0.0
restart: always
ports:
- 8080:8080
depends_on:
- postgresql
- rabbitmq
environment:
- HOST_EXCHANGE=http://exchange:8081
- RABBITMQ_HOST=rabbitmq
- DATABASE_HOST=jdbc:postgresql://postgresql:5432/postgres
exchange:
image: docker.io/robsonkades/exchange:1.0.0
restart: always
ports:
- 8081:8081
depends_on:
- postgresql
- rabbitmq
environment:
- RABBITMQ_HOST=rabbitmq
- DATABASE_HOST=jdbc:postgresql://postgresql:5432/postgres
volumes:
rabbitmq_data:
driver: local
postgresql_data:
driver: local