srv_freshrss_app:
image: freshrss/freshrss
container_name: SRV_FreshRSS_APP
restart: unless-stopped
ports:
- "9017:80"
environment:
TZ: Europe/Rome
CRON_MIN: 1,31
volumes:
- freshrss_data:/var/www/FreshRSS/data
- freshrss_extensions:/var/www/FreshRSS/extensions
depends_on:
- srv_freshrss_db
srv_freshrss_db:
container_name: SRV_FreshRSS_DB
image: postgres:latest
environment:
POSTGRES_USER: ${FRESHRSS_DB_USR}
POSTGRES_PASSWORD: ${FRESHRSS_DB_PWD}
POSTGRES_DB: ${FRESHRSS_DB_NAME}
TZ: Europe/Rome
volumes:
- freshrss_db:/var/lib/postgresql/data
restart: unless-stoppedFreshRSS
Guida per installare FreshRSS con Docker. Aggregatore RSS open-source per seguire feed di notizie e blog in un'unica interfaccia.
yaml