-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
42 lines (38 loc) · 1.05 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
services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_PASSWORD: "postgres"
# command: ["postgres", "-c", "log_connections=all", "-c", "log_disconnections=all", "-c", "log_statement=all", "-c", "log_destination=stderr"]
ports:
- "5432:5432"
s3:
image: minio/minio:edge-cicd
environment:
MINIO_DOMAIN: localhost # virtual hosted-style access
MINIO_ROOT_USER: cleanpython
MINIO_ROOT_PASSWORD: cleanpython
ports:
- "9000:9000"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
interval: 2s
retries: 10
timeout: 1s
fluentbit:
image: fluent/fluent-bit:1.9
ports:
- "24224:24224"
rabbitmq:
image: "rabbitmq:3-alpine"
environment:
RABBITMQ_DEFAULT_USER: "cleanpython"
RABBITMQ_DEFAULT_PASS: "cleanpython"
RABBITMQ_DEFAULT_VHOST: "cleanpython"
ports:
- "5672:5672"
healthcheck:
test: rabbitmq-diagnostics check_port_connectivity
interval: 10s
timeout: 1s
retries: 5