diff options
| author | 2022-11-30 20:45:40 +0100 | |
|---|---|---|
| committer | 2022-11-30 20:45:40 +0100 | |
| commit | 543fa4e76c1761154801febd08400520b75143e3 (patch) | |
| tree | 5c554a1e9ea48d217edceed09284d9946b2fccb2 /Docker/README.md | |
| parent | f41a574a9f693d81c6eabff7a05ebf3648858d5b (diff) | |
Docker uniform timezone behaviour (#4905)
* Docker Alpine timezone for :newest and :oldest
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/4903
Forgot the development images Newest and Oldest
* Uniform timezone behaviour
* shellcheck
* A bit more documentation
Diffstat (limited to 'Docker/README.md')
| -rw-r--r-- | Docker/README.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Docker/README.md b/Docker/README.md index 44963ba0c..a4c0e8289 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -81,7 +81,7 @@ and with newer packages in general (Apache, PHP). ## Environment variables -* `TZ`: (default is `UTC`) A [server timezone](http://php.net/timezones) (default is `UTC`) +* `TZ`: (default is `UTC`) A [server timezone](http://php.net/timezones) * `CRON_MIN`: (default is disabled) Define minutes for the built-in cron job to automatically refresh feeds (see below for more advanced options) * `FRESHRSS_ENV`: (default is `production`) Enables additional development information if set to `development` (increases the level of logging and ensures that errors are displayed) (see below for more development options) * `COPY_LOG_TO_SYSLOG`: (default is `On`) Copy all the logs to syslog @@ -303,6 +303,7 @@ services: options: max-size: 10m volumes: + # Recommended volume for FreshRSS persistent data such as configuration and SQLite databases - data:/var/www/FreshRSS/data # Optional volume for storing third-party extensions - extensions:/var/www/FreshRSS/extensions @@ -314,8 +315,11 @@ services: # If you want to open a port 8080 on the local machine: - "8080:80" environment: + # A timezone http://php.net/timezones (default is UTC) TZ: Europe/Paris + # Cron job to refresh feeds at specified minutes CRON_MIN: '2,32' + # 'development' for additional logs; default is 'production' FRESHRSS_ENV: development # Optional advanced parameter controlling the internal Apache listening port LISTEN: 0.0.0.0:80 |
