diff --git a/docs/images/docker-flexget.md b/docs/images/docker-flexget.md index 056b2ac0c..144b837d2 100755 --- a/docs/images/docker-flexget.md +++ b/docs/images/docker-flexget.md @@ -44,7 +44,7 @@ See the [FlexGet website](https://flexget.com/) for more information. We have set `/data` as an ***optional path***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. -Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. +Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. @@ -69,7 +69,7 @@ services: - FG_CONFIG_FILE=/config/.flexget/config.yml - FG_WEBUI_PASSWORD=info #optional volumes: - - /path/to/data:/config + - /path/to/flexget/data:/config - /path/to/downloads:/data #optional ports: - 5050:5050 @@ -89,7 +89,7 @@ docker run -d \ -e FG_CONFIG_FILE=/config/.flexget/config.yml \ -e FG_WEBUI_PASSWORD=info `#optional` \ -p 5050:5050 \ - -v /path/to/data:/config \ + -v /path/to/flexget/data:/config \ -v /path/to/downloads:/data `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/flexget:latest @@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.03.24:** - Rebase to Alpine 3.19. * **07.10.23:** - Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar). * **10.08.23:** - Bump unrar to 6.2.10. * **03.07.23:** - Initial Release.