-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
118 lines (108 loc) · 3.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
version: '3.7'
x-environment:
&default-labels
br.com.lnls-sirius.commit: ${COMMIT_HASH}
br.com.lnls-sirius.department: ${DEPARTMENT}
org.opencontainers.image.authors: ${AUTHOR}
org.opencontainers.image.created: ${BUILD_DATE_RFC339}
org.opencontainers.image.licenses: ${LICENSE}
org.opencontainers.image.revision: ${COMMIT_HASH}
org.opencontainers.image.source: ${REPOSITORY}
org.opencontainers.image.url: ${REPOSITORY}
org.opencontainers.image.vendor: CNPEM
org.opencontainers.image.version: ${EPICS_BASE_TAG}
services:
epics:
image: ${EPICS_BASE_IMAGE}:${EPICS_BASE_TAG}
build:
dockerfile: 'Dockerfile.EPICS'
context: .
args:
BASE_IMAGE: ${BASE_IMAGE}
EPICS_VERSION: ${EPICS_VERSION}
labels:
<<: *default-labels
org.opencontainers.image.description: ${BASE_IMAGE} with EPICS ${EPICS_VERSION} and commonly used modules
org.opencontainers.image.title: EPICS ${EPICS_VERSION}
stream:
image: ${STREAM_BASE_IMAGE}:${STREAM_BASE_TAG}
build:
dockerfile: 'Dockerfile.Stream'
context: .
target: stream
args:
EPICS_BASE_IMAGE: ${EPICS_BASE_IMAGE}
EPICS_BASE_TAG: ${EPICS_BASE_TAG}
labels:
br.com.lnls-sirius.commit: ${COMMIT_HASH}
agilent4uhv:
image: ${STREAM_BASE_IMAGE}:${AGILENT4UHV_TAG}
build:
dockerfile: 'Dockerfile'
context: .
target: agilent4uhv
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.device: "Agilent 4UHV"
br.com.lnls-sirius.commit: ${COMMIT_HASH}
countingpru:
image: ${STREAM_BASE_IMAGE}:${COUNTINGPRU_TAG}
build:
dockerfile: 'Dockerfile'
context: .
target: countingpru
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.device: "Counting PRU"
br.com.lnls-sirius.commit: ${COMMIT_HASH}
mbtemp:
image: ${STREAM_BASE_IMAGE}:${MBTEMP_TAG}
build:
dockerfile: 'Dockerfile.mbtemp'
context: .
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.commit: ${COMMIT_HASH}
br.com.lnls-sirius.device: "MBTemp"
mks937b:
image: ${STREAM_BASE_IMAGE}:${MKS937B_TAG}
build:
dockerfile: 'Dockerfile.mks'
context: .
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.commit: ${COMMIT_HASH}
br.com.lnls-sirius.device: "MKS937b"
volumes:
- "/var/tmp/auto:/opt/epics-R3.15.6/modules/StreamDevice-2.8.9/autosave:rw"
rackMonitoring:
image: ${STREAM_BASE_IMAGE}:${RACKMON_TAG}
build:
dockerfile: 'Dockerfile'
context: .
target: rackMonitoring
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.commit: ${COMMIT_HASH}
br.com.lnls-sirius.device: "RackMonitoring"
spixconv:
image: ${STREAM_BASE_IMAGE}:${SPIXCONV_TAG}
build:
dockerfile: 'Dockerfile.spixconv'
context: .
args:
STREAM_BASE_IMAGE: ${STREAM_BASE_IMAGE}
STREAM_BASE_TAG: ${STREAM_BASE_TAG}
labels:
br.com.lnls-sirius.commit: ${COMMIT_HASH}
br.com.lnls-sirius.device: "SPIxCONV"