mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 11:43:43 -04:00
I just saw some users getting confused about the build section despite of the comment, so commented out by default https://github.com/FreshRSS/FreshRSS/discussions/7246#discussioncomment-11908948
26 lines
725 B
YAML
26 lines
725 B
YAML
volumes:
|
|
data:
|
|
extensions:
|
|
|
|
services:
|
|
freshrss:
|
|
image: freshrss/freshrss:latest
|
|
# # Optional build section if you want to build the image locally:
|
|
# build:
|
|
# # Pick #latest (slow releases) or #edge (rolling release) or a specific release like #1.21.0
|
|
# context: https://github.com/FreshRSS/FreshRSS.git#latest
|
|
# dockerfile: Docker/Dockerfile-Alpine
|
|
container_name: freshrss
|
|
hostname: freshrss
|
|
restart: unless-stopped
|
|
logging:
|
|
options:
|
|
max-size: 10m
|
|
volumes:
|
|
- data:/var/www/FreshRSS/data
|
|
- extensions:/var/www/FreshRSS/extensions
|
|
environment:
|
|
TZ: Europe/Paris
|
|
CRON_MIN: '3,33'
|
|
TRUSTED_PROXY: 172.16.0.1/12 192.168.0.1/16
|