27 lines
651 B
YAML
27 lines
651 B
YAML
services:
|
|
apprise-api:
|
|
image: lscr.io/linuxserver/apprise-api:latest
|
|
container_name: apprise-api
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- APPRISE_ATTACH_SIZE=0 #optional
|
|
volumes:
|
|
- /home/fejy/docker/apprise-api/config:/config
|
|
- /home/fejy/docker/apprise-api/attachments:/attachments #optional
|
|
ports:
|
|
- 8006:8000
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.apprise.rule=Host(`apprise.nearfuture`)"
|
|
- "traefik.http.routers.apprise.entrypoints=web"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|