From 9563286a2ff7cf27544397fcc22a7e48c9d7d415 Mon Sep 17 00:00:00 2001 From: driz <40674481+drizuid@users.noreply.github.com> Date: Mon, 12 Oct 2020 12:33:58 -0400 Subject: [PATCH] Add files via upload --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d6ba708..83cb956 100644 --- a/README.md +++ b/README.md @@ -76,11 +76,11 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - UMASK_SET=<022> + - UMASK_SET=022 #optional volumes: - - :/config - - :/downloads - - :/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 :/config \ - -v :/downloads \ - -v :/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. |