-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (34 loc) · 853 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (34 loc) · 853 Bytes
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
version: '3'
volumes:
dbdata:
fsdata:
services:
postgres:
image: postgres:latest
environment:
POSTGRES_DB: django
POSTGRES_PASSWORD: postgres
ports:
- ${DOCKER_POSTGRES_PORT-5432}:5432
volumes:
- dbdata:/var/lib/postgresql/data
rabbitmq:
# Management features are required to monitor the GPU task queue
image: rabbitmq:management
logging:
driver: none
ports:
- ${DOCKER_RABBITMQ_PORT-5672}:5672
- ${DOCKER_RABBITMQ_ADMIN_PORT-15672}:15672
minio:
image: minio/minio:latest
# When run with a TTY, minio prints credentials on startup
tty: true
command: [ "server", "/data" ]
environment:
MINIO_ACCESS_KEY: minioAccessKey
MINIO_SECRET_KEY: minioSecretKey
ports:
- ${DOCKER_MINIO_PORT-9000}:9000
volumes:
- fsdata:/data