Files
EdgeManager/docker-compose.yml

25 lines
590 B
YAML
Raw Normal View History

services:
scada:
2022-07-22 14:44:27 +08:00
build:
context: .
2022-07-02 10:58:03 +08:00
container_name: edge_manager
image: edge_manager
network_mode: host
volumes:
2022-07-02 10:58:03 +08:00
- $PWD:/EdgeManager
restart: unless-stopped
tty: true
2022-07-12 22:36:30 +08:00
# https://hub.docker.com/_/postgres
timescaledb:
container_name: tsdb
image: timescale/timescaledb-ha:pg14-latest
network_mode: host
restart: unless-stopped
environment:
POSTGRES_PASSWORD: big_dick
2022-07-12 22:36:30 +08:00
volumes:
- $PWD/config/postgresql.conf:/etc/postgresql/postgresql.conf
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf'