Add files via upload

This commit is contained in:
driz 2020-10-12 12:33:58 -04:00 committed by GitHub
parent e168501d1e
commit 9563286a2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,11 +76,11 @@ services:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- UMASK_SET=<022>
- UMASK_SET=022 #optional
volumes:
- <path to config>:/config
- <path to downloads>:/downloads
- <path to data>:/sync
- /path/to/config:/config
- /path/to/downloads:/downloads
- /path/to/data:/sync
ports:
- 8888:8888
- 55555:55555
@ -95,12 +95,12 @@ docker run -d \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e UMASK_SET=<022> \
-e UMASK_SET=022 `#optional` \
-p 8888:8888 \
-p 55555:55555 \
-v <path to config>:/config \
-v <path to downloads>:/downloads \
-v <path to data>:/sync \
-v /path/to/config:/config \
-v /path/to/downloads:/downloads \
-v /path/to/data:/sync \
--restart unless-stopped \
linuxserver/resilio-sync
```
@ -117,7 +117,7 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e PUID=1000` | for UserID - see below for explanation |
| `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
| `-e UMASK_SET=<022>` | For umask setting of resilio-sync, default if left unset is 022. |
| `-e UMASK_SET=022` | For umask setting of resilio-sync, default if left unset is 022. |
| `-v /config` | Where resilio-sync should store its config file. |
| `-v /downloads` | Folder for downloads/cache. |
| `-v /sync` | Sync folders root. |