Add gotify
This commit is contained in:
parent
322b79fe6d
commit
cfe48bd063
2 changed files with 34 additions and 0 deletions
4
gotify/Caddyfile
Normal file
4
gotify/Caddyfile
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
gotify.codehal.de {
|
||||
reverse_proxy * gotify:80 {
|
||||
}
|
||||
}
|
||||
30
gotify/docker-compose.yml
Normal file
30
gotify/docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue