mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-26 14:18:02 -05:00
* New core-extensions to allow Docker volumes for third-party extensions #Fix https://github.com/FreshRSS/FreshRSS/issues/2650 Split our extensions directory into two: 1) Core extensions shipped with FreshRSS in ./lib/core-extensions/ 2) Third-party extensions modified by end-users in ./extensions/ which can easily be mounted as a Docker volume * Example of Docker Compose with extensions * Back-compatibility + fix array merge bug
34 lines
692 B
YAML
34 lines
692 B
YAML
version: "3"
|
|
|
|
services:
|
|
freshrss_postgresql:
|
|
image: postgres
|
|
restart: unless-stopped
|
|
volumes:
|
|
- pgsql_data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=freshrss
|
|
- POSTGRES_PASSWORD=freshrss
|
|
- POSTGRES_DB=freshrss
|
|
|
|
freshrss:
|
|
image: freshrss/freshrss
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
depends_on:
|
|
- freshrss_postgresql
|
|
volumes:
|
|
- freshrss_data:/var/www/FreshRSS/data
|
|
- freshrss_extensions:/var/www/FreshRSS/extensions
|
|
environment:
|
|
- CRON_MIN=*/20
|
|
- TZ=Europe/Copenhagen
|
|
labels:
|
|
- "traefik.port=80"
|
|
|
|
volumes:
|
|
pgsql_data:
|
|
freshrss_data:
|
|
freshrss_extensions:
|