19 lines
567 B
YAML
19 lines
567 B
YAML
version: "3"
|
|
services:
|
|
node-bootstrap:
|
|
image: aceberg/node-bootstrap
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8850:8850
|
|
wyl:
|
|
image: aceberg/watchyourlan
|
|
network_mode: "host"
|
|
restart: unless-stopped
|
|
command: "-n http://192.168.1.36:8850" # put your server IP or DNS name here
|
|
depends_on:
|
|
- node-bootstrap
|
|
volumes:
|
|
- /srv/appdata/watchyourlan/data:/data
|
|
environment:
|
|
TZ: Europe/Brussels # required: needs your TZ for correct time
|
|
IFACE: "ens18" # required: 1 or more interface |