mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 16:25:35 +01:00
Add Duplicati
This commit is contained in:
parent
2236a98c9e
commit
5ed781ee0b
@ -8,6 +8,8 @@ All services are deployed using Docker compose and are run as a non-root user.
|
||||
* [ddclient](https://github.com/linuxserver/docker-ddclient) - DDNS
|
||||
* [SWAG](https://github.com/linuxserver/docker-swag) - reverse proxy with SSL certbot and fail2ban
|
||||
* [watchtower](https://github.com/containrrr/watchtower) - notifications about docker image updates
|
||||
* [Duplicati](https://github.com/linuxserver/docker-duplicati) - cool backup
|
||||
software
|
||||
|
||||
### Media
|
||||
* [Jellyfin](https://github.com/linuxserver/docker-jellyfin) - media server
|
||||
|
@ -31,3 +31,9 @@ BW_ADMIN_TOKEN=
|
||||
|
||||
# jellyfin
|
||||
JF_RENDER_GROUP=
|
||||
|
||||
# duplicati
|
||||
DUPLICATI_UID=
|
||||
DUPLICATI_GID=
|
||||
BACKUP_SOURCE_DIR=
|
||||
BACKUP_DIR=
|
||||
|
21
docker/stacks/duplicati/duplicati.yml
Normal file
21
docker/stacks/duplicati/duplicati.yml
Normal file
@ -0,0 +1,21 @@
|
||||
services:
|
||||
duplicati:
|
||||
image: linuxserver/duplicati
|
||||
container_name: duplicati
|
||||
networks:
|
||||
- duplicati
|
||||
environment:
|
||||
- PUID=${DUPLICATI_UID}
|
||||
- PGID=${DUPLICATI_GID}
|
||||
- TZ=${TIMEZONE}
|
||||
volumes:
|
||||
- ${APPS_DIR}/duplicati:/config
|
||||
- ${BACKUP_DIR}:/backups
|
||||
- ${BACKUP_SOURCE_DIR}:/source
|
||||
ports:
|
||||
- "8200:8200"
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
duplicati:
|
||||
name: duplicati
|
Loading…
Reference in New Issue
Block a user