feat(apprise): add Apprise
This commit is contained in:
parent
808c26324e
commit
67148f146f
4 changed files with 37 additions and 2 deletions
|
@ -146,13 +146,12 @@ that I intend to add to this repository. It is still growing, and I welcome
|
|||
|
||||
- [x] [Actual](https://actualbudget.github.io/docs/)
|
||||
- [x] [AdGuard](https://adguard.com)
|
||||
- [ ] [Apprise](https://github.com/caronc/apprise)
|
||||
- [x] [Apprise](https://github.com/caronc/apprise)
|
||||
- [ ] [ArgoCD](https://github.com/argoproj/argo-cd)
|
||||
- [x] [Audiobookshelf](https://www.audiobookshelf.org/)
|
||||
- [ ] [Authelia](https://www.authelia.com/)
|
||||
- [ ] [Authentik](https://goauthentik.io/)
|
||||
- [x] [betanin](https://github.com/sentriz/betanin)
|
||||
- [ ] [Bigcapital](https://bigcapital.app/)
|
||||
- [ ] [Bitwarden](https://bitwarden.com/)
|
||||
- [x] [Blinko](https://blinko.mintlify.app/introduction)
|
||||
- [x] [booktree](https://github.com/myxdvz/booktree)
|
||||
|
|
25
quadlets/apprise/apprise.container
Normal file
25
quadlets/apprise/apprise.container
Normal file
|
@ -0,0 +1,25 @@
|
|||
[Unit]
|
||||
Description=Apprise API
|
||||
|
||||
[Service]
|
||||
Restart=on-failure
|
||||
TimeoutStartSec=900
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
[Container]
|
||||
Image=docker.io/caronc/apprise:latest
|
||||
ContainerName=apprise
|
||||
AutoUpdate=registry
|
||||
|
||||
Network=apprise.network
|
||||
HostName=apprise
|
||||
PublishPort=8000:8000
|
||||
|
||||
Volume=apprise-config:/config
|
||||
Volume=apprise-plugin:/plugin
|
||||
Volume=apprise-attahc:/attahc
|
||||
|
||||
Environment=APPRISE_STATEFUL_MODE=simple
|
||||
Environment=APPRISE_WORKER_COUNT=1
|
6
quadlets/apprise/apprise.network
Normal file
6
quadlets/apprise/apprise.network
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Unit]
|
||||
Description=Apprise network
|
||||
|
||||
[Network]
|
||||
NetworkName=apprise
|
||||
|
5
quadlets/apprise/apprise.volume
Normal file
5
quadlets/apprise/apprise.volume
Normal file
|
@ -0,0 +1,5 @@
|
|||
[Volume]
|
||||
VolumeName=apprise-config
|
||||
VolumeName=apprise-plugin
|
||||
VolumeName=apprise-attach
|
||||
|
Loading…
Add table
Reference in a new issue