22 lines
497 B
YAML
22 lines
497 B
YAML
services:
|
|
|
|
apprise_app:
|
|
image: caronc/apprise:v1.3.3
|
|
container_name: apprise_app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:{{ apprise_external_port }}:8000"
|
|
networks:
|
|
- "web_proxy_network"
|
|
volumes:
|
|
- "{{ config_dir }}:/config"
|
|
environment:
|
|
PUID: "{{ owner_create_result.uid }}"
|
|
PGID: "{{ owner_create_result.group }}"
|
|
APPRISE_STATEFUL_MODE: simple
|
|
APPRISE_WORKER_COUNT: 1
|
|
|
|
networks:
|
|
web_proxy_network:
|
|
external: true
|