16 lines
424 B
YAML
16 lines
424 B
YAML
|
version: "2"
|
||
|
services:
|
||
|
duplicati:
|
||
|
image: gotify/server:2.0.13
|
||
|
container_name: gotify
|
||
|
environment:
|
||
|
- TZ=Europe/London
|
||
|
volumes:
|
||
|
- ./data:/app/data
|
||
|
restart: unless-stopped
|
||
|
labels:
|
||
|
- "traefik.enable=true"
|
||
|
- "traefik.http.routers.gotify.rule=Host(`gotify.jakehoward.tech`)"
|
||
|
- "traefik.http.routers.gotify.tls=true"
|
||
|
- "traefik.http.routers.gotify.tls.certresolver=le"
|