2021-04-21 00:55:42 +00:00
|
|
|
# [Apprise-api](https://github.com/caronc/apprise-api) Takes advantage of
|
|
|
|
# [Apprise](https://github.com/caronc/apprise) through your network with a user-
|
|
|
|
# friendly API. * Send notifications to more then 65+ services. * An incredibly
|
|
|
|
# lightweight gateway to Apprise. * A production ready micro-service at your
|
|
|
|
# disposal. Apprise API was designed to easily fit into existing (and new) eco-
|
|
|
|
# systems that are looking for a simple notification solution.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=apprise-api \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 8000:8000 `# Port for apprise's interface and API.` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/apprise-api/config:/config `# Where config is stored.` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/apprise-api
|