-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.yml
56 lines (48 loc) · 1.06 KB
/
build.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
version: "3.2"
services:
nginx:
build:
context: ./nginx
dockerfile: Dockerfile
image: "ddmal/nginx:nightly"
iipsrv:
build:
context: ./iipsrv
dockerfile: Dockerfile
image: "ddmal/iipsrv:nightly"
rodan:
build:
context: .
dockerfile: Dockerfile
args:
BRANCHES: develop
image: "ddmal/rodan:nightly"
py3-celery:
build:
context: .
dockerfile: ./python3-celery/Dockerfile
args:
BRANCHES: develop
image: "ddmal/rodan-python3-celery:nightly"
gpu-celery:
build:
context: .
dockerfile: ./gpu-celery/Dockerfile
args:
BRANCHES: develop
image: "ddmal/rodan-gpu-celery:nightly"
postgres:
build:
context: ./postgres
dockerfile: Dockerfile
image: "ddmal/postgres-plpython:nightly"
rodan-client:
build:
context: ./rodan-client
dockerfile: Dockerfile
image: "ddmal/rodan-client:nightly"
iipsrv:
build:
context: ./iipsrv
dockerfile: Dockerfile
image: "ddmal/iipsrv:nightly"