File tree 1 file changed +16
-7
lines changed
1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,26 @@ version: "3"
2
2
3
3
services :
4
4
duplicati :
5
+ image : linuxserver/duplicati:latest
5
6
container_name : duplicati
7
+ hostname : duplicati
6
8
entrypoint :
7
9
- /init
8
10
ports :
9
11
- 8200:8200 # MGMT UI
12
+ expose :
13
+ - 8200
10
14
environment :
11
15
- PUID=0
12
16
- PGID=1000
13
17
- TZ=Europe/Berlin
14
- hostname : duplicati
15
- image : linuxserver/duplicati:latest
18
+ restart : unless-stopped
19
+ volumes :
20
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
21
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
22
+ - /path/to/my/data/to/backup:/source # change this
23
+ # networks:
24
+ # - proxy
16
25
# labels:
17
26
# - com.centurylinklabs.watchtower.enable=false
18
27
# - traefik.enable=true
@@ -21,8 +30,8 @@ services:
21
30
# - traefik.docker.network=proxy
22
31
# # Part for local lan services only
23
32
# - traefik.http.routers.duplicati.middlewares=local-ipwhitelist@file
24
- restart : unless-stopped
25
- volumes :
26
- - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
27
- - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
28
- - /path/to/my/data/to/backup:/source # change this
33
+
34
+ # networks :
35
+ # proxy:
36
+ # external: true
37
+
You can’t perform that action at this time.
0 commit comments