-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
48 lines (45 loc) · 1.02 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
version: '3'
services:
postgres:
image: postgis/postgis:14-3.3
environment:
POSTGRES_DB: django
POSTGRES_PASSWORD: postgres
ports:
- ${DOCKER_POSTGRES_PORT-5432}:5432
volumes:
- postgres:/var/lib/postgresql/data
rabbitmq:
image: rabbitmq:management
ports:
- ${DOCKER_RABBITMQ_PORT-5672}:5672
- ${DOCKER_RABBITMQ_CONSOLE_PORT-15672}:15672
volumes:
- rabbitmq:/var/lib/rabbitmq/mnesia
logging:
driver: none
minio:
image: minio/minio:latest
# When run with a TTY, minio prints credentials on startup
tty: true
command:
[
"server",
"/data",
"--console-address",
":${DOCKER_MINIO_CONSOLE_PORT-9001}"
]
environment:
MINIO_ROOT_USER: minioAccessKey
MINIO_ROOT_PASSWORD: minioSecretKey
ports:
- ${DOCKER_MINIO_PORT-9000}:9000
- ${DOCKER_MINIO_CONSOLE_PORT-9001}:9001
volumes:
- minio:/data
logging:
driver: none
volumes:
postgres:
minio:
rabbitmq: