18 lines
352 B
YAML
18 lines
352 B
YAML
|
|
services:
|
||
|
|
scada:
|
||
|
|
container_name: scada
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
network_mode: "host"
|
||
|
|
volumes:
|
||
|
|
- $PWD:/SCADA
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
timescaledb:
|
||
|
|
container_name: tsdb
|
||
|
|
image: timescale/timescaledb-ha:pg14-latest
|
||
|
|
network_mode: "host"
|
||
|
|
restart: unless-stopped
|
||
|
|
environment:
|
||
|
|
POSTGRES_PASSWORD: big_dick
|