-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
81 lines (68 loc) · 1.89 KB
/
docker-compose.yaml
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
74
75
76
77
78
79
80
81
---
version: '3.0'
# Build and push with: -
#
# IMAGE_TAG=1.0.0 docker-compose build
# IMAGE_TAG=1.0.0 docker-compose push
#
# ----
# NOTE: This file is for copnvenience, it does not feature in the CI build process.
# ---- The CI Build (GitHib's Actions) DOES NOT use Docker Compose.
# It builds each image individually and pushes it to Docker Hub.
# If you add or remove entries here, update the repository's workflow files.
services:
prep:
build:
context: .
dockerfile: Dockerfile-prep
image: informaticsmatters/vs-prep:${IMAGE_TAG:-latest}
nextflow:
build:
context: .
dockerfile: Dockerfile-nextflow
image: informaticsmatters/vs-nextflow:${IMAGE_TAG:-latest}
rdock:
build:
context: .
dockerfile: Dockerfile-rdock
image: informaticsmatters/vs-rdock:${IMAGE_TAG:-latest}
smina:
build:
context: .
dockerfile: Dockerfile-smina
image: informaticsmatters/vs-smina:${IMAGE_TAG:-latest}
oddt:
build:
context: .
dockerfile: Dockerfile-oddt
image: informaticsmatters/vs-oddt:${IMAGE_TAG:-latest}
plants:
build:
context: .
dockerfile: Dockerfile-plants
image: informaticsmatters/vs-plants:${IMAGE_TAG:-latest}
fragnet-search:
build:
context: .
dockerfile: Dockerfile-fns
image: informaticsmatters/vs-fragnet-search:${IMAGE_TAG:-latest}
jaqpot:
build:
context: .
dockerfile: Dockerfile-jaqpot
image: informaticsmatters/vs-jaqpot:${IMAGE_TAG:-latest}
moldb:
build:
context: .
dockerfile: Dockerfile-moldb
image: informaticsmatters/vs-moldb:${IMAGE_TAG:-latest}
dmpk:
build:
context: .
dockerfile: Dockerfile-dmpk
image: informaticsmatters/vs-dmpk:${IMAGE_TAG:-latest}
mordred:
build:
context: .
dockerfile: Dockerfile-mordred
image: informaticsmatters/mordred:${IMAGE_TAG:-latest}