-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (49 loc) · 1.13 KB
/
docker-compose.yml
File metadata and controls
52 lines (49 loc) · 1.13 KB
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
services:
app:
build:
context: ${DOCKER_CURRENT_DIR_LOCATION}
ports:
- ${PORT}:${PORT}
volumes:
- ${DOCKER_CURRENT_DIR_LOCATION}
networks:
- sigma_network
environment:
- TERM=xterm-256color
restart: always
tty: true
mongo:
restart: always
image: mongo:7.0.16
volumes:
- mongo_data:/data/db
networks:
- sigma_network
expose:
- 27017
logging:
driver: none
minio:
image: quay.io/minio/minio
command: server /data --console-address ":9001"
environment:
- MINIO_ROOT_USER=${MinioClientID}
- MINIO_ROOT_PASSWORD=${MinioClientSecret}
volumes:
- minio_data:/data
networks:
- sigma_network
ports:
- 9000:9000
- 9001:9001
expose:
- 9000
logging:
driver: none
mem_limit: 2500m
restart: always
networks:
sigma_network:
volumes:
mongo_data:
minio_data: