-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
73 lines (66 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3.8'
services:
snakemake:
image: ghcr.io/nfdi4health/docker-vambn/vambn:latest
volumes:
- ./vambn_config.yml:/usr/src/app/vambn_config.yml
- ./data:/usr/src/app/data
- ./reports:/usr/src/app/reports
- ./logs:/usr/src/app/logs
depends_on:
- postgres
- mlflow
networks:
- backend
entrypoint: tail -f /dev/null
postgres:
image: postgres:13
environment:
POSTGRES_USER: vambn
POSTGRES_PASSWORD: app
POSTGRES_DB: optuna
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- backend
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U vambn -d optuna" ]
interval: 10s
timeout: 5s
retries: 5
entrypoint:
- sh
- -c
- docker-entrypoint.sh postgres
mlflow:
image: ghcr.io/nfdi4health/docker-vambn/mlflow:latest
volumes:
- mlflow_artifacts:/usr/src/app/mlruns
ports:
- "5000:5000"
depends_on:
mlflow_postgres:
condition: service_healthy
networks:
- backend
mlflow_postgres:
image: postgres:13
environment:
POSTGRES_USER: mlflow
POSTGRES_PASSWORD: mlflow
POSTGRES_DB: mlflow
volumes:
- mlflow_postgres_data:/var/lib/postgresql/data
networks:
- backend
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U mlflow -d mlflow" ]
interval: 10s
timeout: 5s
retries: 5
volumes:
postgres_data:
mlflow_artifacts:
mlflow_postgres_data:
networks:
backend: