Advertisement
gadgeteerza

Docker Compose for Pi.Alert

Sep 16th, 2022 (edited)
409
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.54 KB | None | 0 0
  1. ---
  2. version: "3"
  3. services:
  4.   pialert:
  5.     image: jokobsk/pi.alert
  6.     container_name: pialert
  7.     hostname: pialert
  8.     ports:
  9.      - "20211:20211/tcp"
  10.     environment:
  11.      - TZ=Africa/Johannesburg
  12.       - UID=998
  13.       - GID=100
  14.     network_mode: "host"
  15.     restart: unless-stopped
  16.     labels:
  17.       com.centurylinklabs.watchtower.enable: true
  18.     volumes:
  19.      - /srv/dev-disk-by-label-HD1/data/appdata/Config/PiAlert:/home/pi/pialert/db
  20.       - /srv/dev-disk-by-label-HD1/data/appdata/Config/PiAlert:/home/pi/pialert/config
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement