-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdocker-compose.yml
153 lines (144 loc) · 3.63 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# Hub+Spoke Architecture Example
# https://inductiveautomation.com/ignition/architectures
# https://inductiveautomation.com/static/pdf/IgnitionArchitecture-HubandSpoke.pdf
---
x-default-logging:
&default-logging
logging:
options:
max-size: '100m'
max-file: '5'
driver: json-file
x-ignition-opts:
&ignition-opts
<<: *default-logging
image: inductiveautomation/ignition:${IGNITION_VERSION:-latest}
env_file: gw-init/gateway.env
secrets:
- gateway-admin-password
services:
central-gw:
<<: *ignition-opts
hostname: central-gw
ports:
- 8088:8088
- 8043:8043
command: >
-n Central
-m ${GATEWAY_MAX_MEMORY:-512}
-a central-gw.localtest.me
-h 8088
-s 8043
-r /usr/local/bin/ignition/base.gwbk
environment:
GATEWAY_NETWORK_REQUIRESSL: false
GATEWAY_NETWORK_SECURITYPOLICY: SpecifiedList
GATEWAY_NETWORK_WHITELIST: local1,remote1
networks:
- centralnet
- local1net
- remote1net
volumes:
- central-gw-data:/usr/local/bin/ignition/data
- ./gw-backup/central:/backup
- ./gw-init/central-gw.gwbk:/usr/local/bin/ignition/base.gwbk
local1-gw:
<<: *ignition-opts
hostname: local1-gw
ports:
- 8089:8088
- 8044:8043
command: >
-n Local1
-m ${GATEWAY_MAX_MEMORY:-512}
-a local1-gw.localtest.me
-h 8089
-s 8044
-r /usr/local/bin/ignition/base.gwbk
environment:
GATEWAY_NETWORK_0_HOST: central-gw
GATEWAY_NETWORK_0_PORT: 8088
GATEWAY_NETWORK_0_ENABLESSL: false
GATEWAY_NETWORK_0_PINGRATE: 5000
networks:
- centralnet
- local1net
volumes:
- local1-gw-data:/usr/local/bin/ignition/data
- ./gw-backup/local1:/backup
- ./gw-init/local1-gw.gwbk:/usr/local/bin/ignition/base.gwbk
remote1-gw:
<<: *ignition-opts
hostname: remote1-gw
ports:
- 8090:8088
- 8045:8043
command: >
-n Remote1
-m ${GATEWAY_MAX_MEMORY:-512}
-a remote1-gw.localtest.me
-h 8090
-s 8045
-r /usr/local/bin/ignition/base.gwbk
networks:
- centralnet
- remote1net
environment:
GATEWAY_NETWORK_0_HOST: central-gw
GATEWAY_NETWORK_0_PORT: 8088
GATEWAY_NETWORK_0_ENABLESSL: false
GATEWAY_NETWORK_0_PINGRATE: 5000
volumes:
- remote1-gw-data:/usr/local/bin/ignition/data
- ./gw-backup/remote1:/backup
- ./gw-init/remote1-gw.gwbk:/usr/local/bin/ignition/base.gwbk
db:
<<: *default-logging
image: mariadb:${MARIADB_VERSION:-latest}
ports:
- 3306:3306
environment:
MARIADB_USER: ignition
MARIADB_PASSWORD_FILE: /run/secrets/db-ignition-password
MARIADB_ROOT_PASSWORD_FILE: /run/secrets/db-root-password
networks:
centralnet:
aliases:
- central-db
local1net:
aliases:
- local1-db
remote1net:
aliases:
- remote1-db
secrets:
- db-root-password
- db-ignition-password
volumes:
- db-data:/var/lib/mysql
- ./sql-init:/docker-entrypoint-initdb.d
mailhog:
<<: *default-logging
image: mailhog/mailhog:1.0.1@sha256:8d76a3d4ffa32a3661311944007a415332c4bb855657f4f6c57996405c009bea
ports:
- 8025:8025
networks:
centralnet:
aliases:
- mail
networks:
centralnet:
local1net:
remote1net:
secrets:
gateway-admin-password:
file: secrets/gateway-admin-password
db-ignition-password:
file: secrets/db-ignition-password
db-root-password:
file: secrets/db-root-password
volumes:
central-gw-data:
local1-gw-data:
remote1-gw-data:
db-data: