30 lines
519 B
YAML
30 lines
519 B
YAML
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
|