gadgeteerza

Docker Compose for WatchYourLAN

Sep 16th, 2022 (edited)
307
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.89 KB | Source Code | 0 0
  1. version: "3"
  2. services:
  3.   wyl:
  4.     image: aceberg/watchyourlan
  5.     container_name: watchyourlan
  6.     hostname: watchyourlan
  7.     network_mode: "host"
  8.     restart: unless-stopped
  9.     volumes:
  10.    - /srv/dev-disk-by-label-HD1/data/appdata/Config/wyl:/data
  11.     environment:
  12.       TZ: Africa/Johannesburg # required: needs your TZ for correct time
  13.       IFACE: "enp3s0" # required: 1 or more interface
  14.       DBPATH: "/data/db.sqlite" # optional, default: /data/db.sqlite
  15.       GUIIP: "0.0.0.0" # optional, default: localhost
  16.       GUIPORT: "8840" # optional, default: 8840
  17.       TIMEOUT: "120" # optional, time in seconds, default: 60
  18.       SHOUTRRR_URL: "smtp://[email protected]:[email protected]:587/[email protected]&[email protected]" # optional, set url to notify
  19.       THEME: "darkly" # optional
  20.     labels:
  21.       com.centurylinklabs.watchtower.enable: true
Advertisement
Comments
  • gadgeteerza
    2 years
    # text 0.13 KB | 0 0
    1. The SHOUTRRR URL like is supposed to be formatted for Shoutrrr notifications as per services at https://containrrr.dev/shoutrrr/v0.5/
Add Comment
Please, Sign In to add comment