-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
51 lines (44 loc) · 862 Bytes
/
docker-compose.yaml
File metadata and controls
51 lines (44 loc) · 862 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: "3.1"
services:
redis:
image: redis:5.0
restart: always
ports:
- "16280:6379"
volumes:
- redis_data:/data
mongo:
image: mongo:4.2
restart: always
ports:
- "16019:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: mypassword
volumes:
- mongo_data:/data/db
minio:
image: docker.io/bitnami/minio:2022
ports:
- '9000:9000'
- '9001:9001'
environment:
- MINIO_ROOT_USER=user
- MINIO_ROOT_PASSWORD=password
- MINIO_DEFAULT_BUCKETS=label-llm-test
volumes:
- minio_data:/data
backend:
build: ./backend
ports:
- '16666:8080'
frontend:
build: ./frontend
ports:
- '8086:80'
depends_on:
- backend
volumes:
redis_data:
mongo_data:
minio_data: