mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Enhance meta.json: format tag lists for consistency, add new entries for KaraKeep, FreshRSS, and Movary with detailed descriptions and links. * Update blueprints/freshrss/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/movary/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
services:
|
|
freshrss:
|
|
image: freshrss/freshrss:${FRESHRSS_VERSION:-latest}
|
|
restart: unless-stopped
|
|
volumes:
|
|
# FreshRSS persistent data such as configuration and SQLite databases
|
|
- freshrss_data:/var/www/FreshRSS/data
|
|
# Optional volume for storing third-party extensions
|
|
- freshrss_extensions:/var/www/FreshRSS/extensions
|
|
ports:
|
|
- "80"
|
|
environment:
|
|
# Server timezone
|
|
TZ: ${TZ:-UTC}
|
|
# Cron job to refresh feeds at specified minutes
|
|
CRON_MIN: ${CRON_MIN:-13,43}
|
|
# Production or development mode
|
|
FRESHRSS_ENV: ${FRESHRSS_ENV:-production}
|
|
# Copy logs to syslog
|
|
COPY_LOG_TO_SYSLOG: ${COPY_LOG_TO_SYSLOG:-On}
|
|
# Copy syslog to stderr for docker logs
|
|
COPY_SYSLOG_TO_STDERR: ${COPY_SYSLOG_TO_STDERR:-On}
|
|
# Optional auto-install parameters
|
|
FRESHRSS_INSTALL: ${FRESHRSS_INSTALL:-}
|
|
# Optional auto-create user parameters
|
|
FRESHRSS_USER: ${FRESHRSS_USER:-}
|
|
|
|
volumes:
|
|
freshrss_data:
|
|
freshrss_extensions:
|