-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
73 lines (66 loc) · 1.27 KB
/
docker-compose.yaml
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
services:
minio:
image: quay.io/minio/minio:RELEASE.2024-04-06T05-26-02Z.fips
container_name: minio
restart: unless-stopped
ports:
- 9100:9000
- 9001:9001
env_file:
- .env
volumes:
- minio_data:/data
networks:
- app
command: server /data --console-address ":9001"
extra_hosts:
- "host.docker.internal:host-gateway"
rabbitmq:
image: rabbitmq:3.12.14-management-alpine
container_name: rabbitmq
restart: unless-stopped
ports:
- 5672:5672
- 15672:15672
env_file:
- .env
volumes:
- rabbitmq_data:/var/lib/rabbitmq
networks:
- app
consumer:
build:
context: ./consumer
container_name: consumer
env_file:
- ./consumer/.env
volumes:
- ./consumer:/app
networks:
- app
minio-webhook:
build:
context: ./minio-webhook
container_name: minio-webhook
env_file:
- ./minio-webhook/.env
ports:
- 5001:5001
volumes:
- ./minio-webhook:/app
networks:
- app
mailhog:
image: mailhog/mailhog:v1.0.1
container_name: mailhog
ports:
- 1025:1025
- 8025:8025
networks:
- app
volumes:
minio_data:
rabbitmq_data:
networks:
app:
driver: bridge