-
Notifications
You must be signed in to change notification settings - Fork 22
/
substation.yml
61 lines (57 loc) · 1.38 KB
/
substation.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
version: "3.3"
services:
ied1_xcbr:
build:
context: .
dockerfile: Dockerfile.libiec61850_server
hostname: IED1_XCBR
command: "/srv/libiec61850_server eth0 102 /cfg/IED1_XCBR.cfg /cfg/IED1_XCBR.ext R"
volumes:
- ./cfg:/cfg
networks:
subnetwork1:
ipv4_address: 10.0.0.2
privileged: true
ied2_ptoc:
build:
context: .
dockerfile: Dockerfile.libiec61850_server
hostname: IED2_PTOC
command: "/srv/libiec61850_server eth0 102 /cfg/IED2_PTOC.cfg /cfg/IED2_PTOC.ext R"
volumes:
- ./cfg:/cfg
networks:
subnetwork1:
ipv4_address: 10.0.0.3
privileged: true
ied3_smv:
build:
context: .
dockerfile: Dockerfile.libiec61850_server
hostname: IED3_SMV
command: "/srv/libiec61850_server eth0 102 /cfg/IED3_SMV.cfg /cfg/IED3_SMV.ext R"
volumes:
- ./cfg:/cfg
networks:
subnetwork1:
ipv4_address: 10.0.0.4
privileged: true
ied4_smv:
build:
context: .
dockerfile: Dockerfile.libiec61850_server
hostname: IED4_SMV
command: "/srv/libiec61850_server eth0 102 /cfg/IED4_SMV.cfg /cfg/IED4_SMV.ext R"
volumes:
- ./cfg:/cfg
networks:
subnetwork1:
ipv4_address: 10.0.0.5
privileged: true
networks:
subnetwork1:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.0.0.0/24