Sign inSign up

alcapone1933/pushtify

By alcapone1933

Updated 9 months ago

https://github.com/alcapone1933/pushtify

Image
0

3.0K

alcapone1933/pushtify repository overview

Pushtify

Dieser Docker-Container basiert auf dem Pushtify-Projekt von Sebastian Wüthrich.

Das ursprüngliche Pushtify-Projekt ist ein Tool zum Weiterleiten von Gotify Benachrichtigungen an Pushover.

Diese Docker-Container leitet Gotify Benachrichtigungen an noch mehr Dienste per shoutrrr als python script.

Docker CLI
docker run -dt \
    --restart always \
    --name pushtify \
    -e TZ=Europe/Berlin \
    -e "SHOUTRRR_URL=discord://123456abc@555555555555555" \
    -e GOTIFY_TOKEN=1234567890 \
    -e GOTIFY_URL=https://gotify.example.org \
    -e NOTIFY_FILE_SAVE=false \
    alcapone1933/pushtify:latest

Docker Compose
services:
  pushtify:
    image: alcapone1933/pushtify:latest
    container_name: pushtify
    restart: always
    tty: true
    # volumes:
      # - data:/app/data
    environment:
      - TZ=Europe/Berlin
      - "SHOUTRRR_URL=discord://123456abc@555555555555555"
      - GOTIFY_TOKEN=1234567890
      - GOTIFY_URL=http://192.168.178.16:80
      # - GOTIFY_URL=https://gotify.example.org
      - NOTIFY_FILE_SAVE=false
# volumes:      
  # data:

Volume Parameter

Name (Beschreibung) #OptionalWertStandard
Speicherort Json Nachrichtenvolumedata:/app/data

 

Env Parameter

Name (Beschreibung)WertStandardBeispiel
ZeitzoneTZEurope/BerlinEurope/Berlin
Gotify client TokenGOTIFY_TOKEN------------------1234567890
Gotify url für den ServerGOTIFY_URL------------------http://192.168.178.16:80
SHOUTRRR URL: Deine Shoutrrr URL z.b ( gotify,discord,telegram,email)SHOUTRRR_URL------------------discord://123456abc@555555555555555
Nachrichten abspeichern in /app/data als json dateiNOTIFY_FILE_SAVEfalsefalse oder true

Tag summary

Content type

Image

Digest

sha256:c5f173793

Size

31.3 MB

Last updated

over 1 year ago

docker pull alcapone1933/pushtify