-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
43 lines (38 loc) · 1.28 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
version: '3.2'
services:
# --------------------------------------------------------------------------
# SOCS Base Image
# --------------------------------------------------------------------------
socs:
image: "socs"
build: .
# --------------------------------------------------------------------------
# SOCS Agents
# --------------------------------------------------------------------------
ocs-pysmurf-agent:
image: "ocs-pysmurf-agent"
build: ./docker/pysmurf_controller/
ocs-wgactuator-agent:
image: "ocs-wgactuator-agent"
build: ./docker/wiregrid_actuator/
depends_on:
- "socs"
# Only works with --privileged, will insist users build image themselves
# ocs-hwp-picoscope-agent:
# image: "ocs-hwp-picoscope-agent"
# build: ./docker/hwp_picoscope/
# depends_on:
# - "socs"
# --------------------------------------------------------------------------
# SOCS Simulators
# --------------------------------------------------------------------------
ocs-lakeshore240-simulator:
image: "ocs-lakeshore240-simulator"
build: ./simulators/lakeshore240/
depends_on:
- "socs"
ocs-lakeshore372-simulator:
image: "ocs-lakeshore372-simulator"
build: ./simulators/lakeshore372/
depends_on:
- "socs"