feat: add apprise to docker-compose

This commit is contained in:
Ravinou 2023-10-08 18:41:13 +02:00
parent bd4ff2f87e
commit 1ef8703991
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7

View file

@ -1,12 +1,14 @@
version: '3'
services:
borgwarehouse:
# UID:GID must match the user and group ID of the host folders and must be >= 1001
container_name: borgwarehouse
# If you want to build the image yourself, uncomment the following lines and comment the image line
#build:
# context: .
# dockerfile: Dockerfile
image: borgwarehouse/borgwarehouse
# UID:GID must match the user and group ID of the host folders and must be > 1000
user: '1001:1001'
build:
context: .
dockerfile: Dockerfile
image: borgwarehouse
ports:
- '3000:3000'
- '2222:22'
@ -23,4 +25,8 @@ services:
- <host-folder>/ssh:/home/borgwarehouse/.ssh
- <host-folder>/ssh_host:/etc/ssh
- <host-folder>/repos:/home/borgwarehouse/repos
container_name: borgwarehouse
# Apprise is used to send notifications, it's optional. http://apprise:8000 is the URL to use in BorgWarehouse.
apprise:
container_name: apprise
image: caronc/apprise
user: 'www-data:www-data'