diff options
| author | 2021-11-14 23:25:27 +0100 | |
|---|---|---|
| committer | 2021-11-14 23:25:27 +0100 | |
| commit | 81b00bd8aacb0627ebb810b9100ee800bf53326f (patch) | |
| tree | 291d6f0f5d4ac5b974ce908b9897bd4e028ce8a8 /Docker/README.md | |
| parent | b780ef5276407bd681b201ced2d75cb442b8cd38 (diff) | |
Docker: Move logic to disable FreshRSS updates (#3973)
Should be done during build and not during entrypoint, to avoid modifying a potential volume (e.g. mounting the source code as a volume is used during development).
Diffstat (limited to 'Docker/README.md')
| -rw-r--r-- | Docker/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docker/README.md b/Docker/README.md index c5a6792e3..79085cce1 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -81,7 +81,7 @@ docker run -d --restart unless-stopped --log-opt max-size=10m \ `--label traefik.frontend.rule='Host:freshrss.example.net;PathPrefixStrip:/FreshRSS/' \` * You may remove the `--label traefik.*` lines if you do not use Træfik. * Add `-p 8080:80 \` if you want to expose FreshRSS locally, e.g. on port `8080`. -* Replace `freshrss/freshrss` by a more specific tag (see below) such as `freshrss/freshrss:dev` for the development version, or `freshrss/freshrss:arm` for a Raspberry Pi version. +* Replace `freshrss/freshrss` by a more specific tag (see below) such as `freshrss/freshrss:edge` for the development version, or `freshrss/freshrss:arm` for a Raspberry Pi version. This already works with a built-in **SQLite** database (easiest), but more powerful databases are supported: @@ -284,7 +284,7 @@ while reading the source code from your local (git) directory, like the followin cd /path-to-local/FreshRSS/ docker run --rm -p 8080:80 -e TZ=Europe/Paris -e FRESHRSS_ENV=development \ -v $(pwd):/var/www/FreshRSS \ - freshrss/freshrss:dev + freshrss/freshrss:edge ``` This will start a server on port 8080, based on your local PHP code, which will show the logs directly in your terminal. |
