Add gotify

This commit is contained in:
Steffen Lange 2024-11-14 16:02:22 +00:00
parent 322b79fe6d
commit cfe48bd063
2 changed files with 34 additions and 0 deletions

4
gotify/Caddyfile Normal file
View file

@ -0,0 +1,4 @@
gotify.codehal.de {
reverse_proxy * gotify:80 {
}
}

30
gotify/docker-compose.yml Normal file
View file

@ -0,0 +1,30 @@
version: "3"
networks:
proxynet:
services:
gotify:
container_name: gotify
restart: unless-stopped
image: gotify/server
ports:
- 8080:80
environment:
- GOTIFY_DEFAULTUSER_PASS=custom
- TZ=Europe/Berlin
volumes:
- "./gotify_data:/app/data"
networks:
- proxynet
caddy:
container_name: caddy
restart: unless-stopped
image: caddy
ports:
- 443:443
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
networks:
- proxynet