diff options
| -rw-r--r-- | Docker/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Docker/README.md b/Docker/README.md index cb59c65ec..44963ba0c 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -26,6 +26,7 @@ docker run -d --restart unless-stopped --log-opt max-size=10m \ -e TZ=Europe/Paris \ -e 'CRON_MIN=1,31' \ -v freshrss_data:/var/www/FreshRSS/data \ + -v freshrss_extensions:/var/www/FreshRSS/extensions \ --name freshrss \ freshrss/freshrss ``` @@ -33,7 +34,7 @@ docker run -d --restart unless-stopped --log-opt max-size=10m \ * Exposing on port 8080 * With a [server timezone](http://php.net/timezones) (default is `UTC`) * With an automatic cron job to refresh feeds -* Saving FreshRSS data in a Docker volume `freshrss_data` +* Saving FreshRSS data in a Docker volume `freshrss_data` and optional extensions in `freshrss_extensions` * Using the default image, which is the latest stable release ### Complete installation @@ -303,6 +304,7 @@ services: max-size: 10m volumes: - data:/var/www/FreshRSS/data + # Optional volume for storing third-party extensions - extensions:/var/www/FreshRSS/extensions # Optional file providing custom global settings (used before a FreshRSS install) - ./config.custom.php:/var/www/FreshRSS/data/config.custom.php |
