-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
49 lines (43 loc) · 885 Bytes
/
docker-compose.yaml
File metadata and controls
49 lines (43 loc) · 885 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
version: '3.7'
services:
# For running the Flask server
web:
build:
context: .
args:
DEVELOPMENT: 1
environment:
- DEVELOPMENT=1
- MINIO_ACCESS_KEY=minio
- MINIO_SECRET_KEY=minio123
- PYTHONUNBUFFERED=1
ports:
- "127.0.0.1:5000:5000"
volumes:
- .:/app
depends_on:
- minio
- auth
# For running the file server
minio:
image: minio/minio
expose:
- "9000"
environment:
- MINIO_ACCESS_KEY=minio
- MINIO_SECRET_KEY=minio123
volumes:
- data:/data
command: server /data
# The minio cli interface
mc:
image: minio/mc
volumes:
- data:/data
# A mock kbase auth server (see src/test/mock_auth/endpoints.json)
auth:
image: mockservices/mock_json_service
volumes:
- ${PWD}/src/test/mock_auth:/config
volumes:
data: