-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (35 loc) · 992 Bytes
/
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
# A Docker compose file to cimplify building up the images required to run the knoweng pipeline
version: '2'
services:
# Pipelines
gene-prioritization:
build: ./pipelines/gene-prioritization
image: bodom0015/gene-prioritization
gene-set-characterization:
build: ./pipelines/gene-set-characterization
image: bodom0015/gene-set-characterization
samples-clustering:
build: ./pipelines/samples-clustering
image: bodom0015/samples-clustering
data-cleanup:
build: ./pipelines/data-cleanup
image: bodom0015/data-cleanup
# IDE
cloud9:
build: ./platform/Dockerfile.cloud9
image: bodom0015/cloud9-nest
# Platform
# nest_flask_i:
# build: ./docker/Dockerfile-nest_flask
# image: bodom0015/nest:flask
# nest_jobs_i:
# build: ./docker/Dockerfile-nest_jobs
# image: bodom0015/nest:jobs
redis_i:
image: "redis:3.0.3"
ports:
- "6379:6379"
postgres_i:
image: "postgres:9.6.2"
ports:
- "5432:5432"