diff --git a/Installation-Synology.md b/Installation-Synology.md index 7d20ad0..c2263b9 100644 --- a/Installation-Synology.md +++ b/Installation-Synology.md @@ -54,18 +54,19 @@ Then you will get a popup asking which Tag you want to use. select `latest` for the stable build. ![](images/image-20200126140136647.png) -or select `unstable-linux-amd64` if you want to use the dev version. -![](images/image-20200126140247706.png) +or select `nightly` if you want to use the dev version. + ![image-20201008184855337](images/image-20201008184855337.png) + In this example I will use the dev build. Then on the left select `Image` and wait till it's loaded you can see when it's done where the arrow is pointed and it stops building. -![](images/image-20200126140608567.png) + ![image-20201008185018153](images/image-20201008185018153.png) Then double click on the created image. ##### General Settings -![](images/image-20200126141004392.png) +![image-20201008185252513](images/image-20201008185252513.png) 1. Give the container a friendly name (e.g. `bazarr`). 2. Enable this (not sure if it's needed but you can test that later yourself) @@ -86,9 +87,10 @@ Click on `Add Folder` Create a folder named `config` and create in that folder a folder called `bazarr`. This will be used for the database, config and log files. -![](images/image-20200126143412392.png) +![image-20201008190452024](images/image-20201008190452024.png) -Also add your `tv` and your `movies` folder locations. +Also add your `tv` and your `movies` folder locations, +In this Guide we used the preferred path setup that's why we used `/data/media`. ###### Advanced Settings - Port Settings ![](images/image-20200126143706699.png) @@ -124,24 +126,23 @@ Then you ssh into your Synology and you type one of the the following depending ###### Stable build: hotio/bazarr ->`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/video/tv:/tv -v /volume1/video/movies:/movies -e PUID=1026 -e PGID=101 -p 6767:6767 hotio/bazarr:latest` +>`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/data/media:/data/media -e PUID=1026 -e PGID=101 -p 6767:6767 hotio/bazarr:latest` linuxserver/bazarr ->`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/video/tv:/tv -v /volume1/video/movies:/movies -e PUID=1026 -e PGID=101 -p 6767:6767 linuxserver/bazarr:latest` +>`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/data/media:/data/media -e PUID=1026 -e PGID=101 -p 6767:6767 linuxserver/bazarr:latest` ###### Development build: hotio/bazarr ->`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/video/tv:/tv -v /volume1/video/movies:/movies -e PUID=1026 -e PGID=101 -p 6767:6767 hotio/bazarr:unstable` +>`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/data/media:/data/media -e PUID=1026 -e PGID=101 -p 6767:6767 hotio/bazarr:nightly linuxserver/bazarr ->`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/video/tv:/tv -v /volume1/video/movies:/movies -e PUID=1026 -e PGID=101 -p 6767:6767 linuxserver/bazarr:development` +>`sudo docker run -d --name Bazarr -v /volume1/docker/config/bazarr:/config -v /volume1/data/media:/data/media -e PUID=1026 -e PGID=101 -p 6767:6767 linuxserver/bazarr:nightly **Extra info:** >`--name Bazarr` = Container name. `-v /volume1/docker/config/bazarr:/config` = Your path to your config location. -`-v /volume1/video/tv:/tv` = Your path to your tv shows/series. -`-v /volume1/video/movies:/movies` = Your path to your movies. +`-v /volume1/data/media:/data/media` = Your path to your tv shows/series and movies. `-e PUID=1026` = Your PUID (*that we found earlier*). `-e PGID=101` = Your PGID (*that we found earlier*). `-p 6767:6767` = The ports Bazarr is going to use. @@ -157,5 +158,7 @@ For his Wiki/Guide I used the following sources being that I don't have a Synolo [DSM 6.2 Online Demo](https://demo.synology.com/en-global/dsm) +[Docker Guide](https://wiki.servarr.com/Docker_Guide) (thnx to @fryfrog) + Help from some Synology users on the [Discord Server](https://discord.gg/MH2e2eb). diff --git a/images/image-20200126140247706.png b/images/image-20200126140247706.png deleted file mode 100644 index 4a280af..0000000 Binary files a/images/image-20200126140247706.png and /dev/null differ diff --git a/images/image-20200126140608567.png b/images/image-20200126140608567.png deleted file mode 100644 index 467e5af..0000000 Binary files a/images/image-20200126140608567.png and /dev/null differ diff --git a/images/image-20200126141004392.png b/images/image-20200126141004392.png deleted file mode 100644 index 6ec8cef..0000000 Binary files a/images/image-20200126141004392.png and /dev/null differ diff --git a/images/image-20200126143412392.png b/images/image-20200126143412392.png deleted file mode 100644 index 1e94be0..0000000 Binary files a/images/image-20200126143412392.png and /dev/null differ diff --git a/images/image-20201008184855337.png b/images/image-20201008184855337.png new file mode 100644 index 0000000..73048de Binary files /dev/null and b/images/image-20201008184855337.png differ diff --git a/images/image-20201008185018153.png b/images/image-20201008185018153.png new file mode 100644 index 0000000..c85869c Binary files /dev/null and b/images/image-20201008185018153.png differ diff --git a/images/image-20201008185252513.png b/images/image-20201008185252513.png new file mode 100644 index 0000000..5b27017 Binary files /dev/null and b/images/image-20201008185252513.png differ diff --git a/images/image-20201008190425001.png b/images/image-20201008190425001.png new file mode 100644 index 0000000..69fdff6 Binary files /dev/null and b/images/image-20201008190425001.png differ diff --git a/images/image-20201008190452024.png b/images/image-20201008190452024.png new file mode 100644 index 0000000..b4c85ab Binary files /dev/null and b/images/image-20201008190452024.png differ