You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
947 B
Bash

# [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.
. ./.env
docker run -d \
--name=apprise-api \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 8000:8000 `# Port for apprise's interface and API.` \
-v ${BASEDIR:-/volume1/docker}/apprise-api/config:/config `# Persistent config files` \
--restart unless-stopped \
ghcr.io/linuxserver/apprise-api