Skip to content

Commit

Permalink
chore: restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
l4rm4nd authored Oct 30, 2024
1 parent 6efa5fe commit b95a73e
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions examples/duplicati/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,26 @@ version: "3"

services:
duplicati:
image: linuxserver/duplicati:latest
container_name: duplicati
hostname: duplicati
entrypoint:
- /init
ports:
- 8200:8200 # MGMT UI
expose:
- 8200
environment:
- PUID=0
- PGID=1000
- TZ=Europe/Berlin
hostname: duplicati
image: linuxserver/duplicati:latest
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
- /path/to/my/data/to/backup:/source # change this
#networks:
# - proxy
#labels:
# - com.centurylinklabs.watchtower.enable=false
# - traefik.enable=true
Expand All @@ -21,8 +30,8 @@ services:
# - traefik.docker.network=proxy
# # Part for local lan services only
# - traefik.http.routers.duplicati.middlewares=local-ipwhitelist@file
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
- /path/to/my/data/to/backup:/source # change this

#networks:
# proxy:
# external: true

0 comments on commit b95a73e

Please sign in to comment.