Hallo @ all,
bitte seht es mir nach, das ich vlt. manches noch nicht ganz verstehe oder mich ggf. nicht korrekt ausdrücke Ich bin über YouTube über die Videos von Dennis gestoßen und bin voll begeistert. Also habe ich mir einen Rasp Pi zugelegt und losgelegt. Portainer, ngnix pm, Watchtower, piHole funktioniert soweit. Wobei ich einen kleinen Rückschlag erlitten habe da, ich von extern “nicht mehr” zugreifen kann. Warum das auf einmal nicht mehr geht versteh ich zwar nicht….. ist aber auch noch nicht wichtig.
Jetzt wollte ich mich ans Projekt:
Gotify und iGotify (AppleFon) machen. Dazu habe ich über Portainer ein Stack erstellt:
services:
gotify:
container_name: gotify-2
hostname: gotify
image: gotify/server:2.6.3
restart: unless-stopped
networks:
- net
ports:
- "9911:80"
volumes:
- data:/app/data
environment:
GOTIFY_DEFAULTUSER_PASS: 'meingeheimespassword' # Setze hier dein Admin-Passwort
igotify:
container_name: igotify-2
hostname: igotify
image: ghcr.io/androidseb25/igotify-notification-assist:latest
restart: unless-stopped
depends_on:
- gotify
networks:
- net
ports:
- "9912:8080"
volumes:
- api-data:/app/data
environment:
GOTIFY_URLS: "http://gotify:80"
GOTIFY_CLIENT_TOKENS: 'meinTOKEN'
SECNTFY_TOKENS: ''
networks:
net:
volumes:
data:
api-data:
Dazu habe ich nach dem ich den STACK deployed habe Gotify gestartet, einen Client angelegt und den TOKEN bei GOTIFY_CLIENT_TOKENS eingefügt.
Gotify funktioniert einwandfrei iGotify teilt mir immer mit:
2025-09-01T19:45:40.529903258Z Database is created: True
2025-09-01T19:45:40.559925700Z Gotify Url list is: empty
2025-09-01T19:45:40.560071013Z Gotify Client list is: empty
2025-09-01T19:45:40.560535388Z SecNtfy Token list is: empty
2025-09-01T19:45:40.560613617Z If one or more lists are empty please check the environment variable! GOTIFY_SERVERS or GOTIFY_CLIENTS or NTFY_TOKENS
2025-09-01T19:45:40.560646325Z If all lists are empty do nothing, you will configure the gotify server over the iGotify app.
Wenn ich in der App iGotify die
GOTIFY URL: http//192.168.xxx.xx
PORT: 9911 und http und in der
iGotify URL: die gleiche
PORT: 9912 und http
rfasse und über weiter gehe, erhalte ich den Hinweis: Kein Gotify Server gefunden!
Ich hab das jetzt schon das STACK geändert usw. immer bleibt aber
2025-09-01T19:45:40.559925700Z Gotify Url list is: empty
2025-09-01T19:45:40.560071013Z Gotify Client list is: empty
2025-09-01T19:45:40.560535388Z SecNtfy Token list is: empty
Leer und die App findet im lokalem Netz kein Gotify Server.
In den Videos ist alles immer einfach und easy….
Könnt Ihr mir evtl weiterhelfen?
LG
Werner