From dabea49ede4471e4b7b7a51da53ad1cb399535f2 Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 10 Oct 2022 16:38:23 +0000 Subject: [PATCH] first commit --- .env | 38 ++++++++++++++++++++++++++++++++++++++ README.md | 0 docker-compose.yml | 24 ++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 .env create mode 100644 README.md create mode 100644 docker-compose.yml diff --git a/.env b/.env new file mode 100644 index 0000000..9ca5f35 --- /dev/null +++ b/.env @@ -0,0 +1,38 @@ +# Example of environment file for docker-compose +# Copy this file into your own `.env` file + +# ================================ +# FreshRSS +# ================================ + +ADMIN_EMAIL=jerick00201@gmail.com + +# Published port for development or local use (optional) +PUBLISHED_PORT=8085 + +# ========================================= +# For automatic FreshRSS install (optional) +# ========================================= + +ADMIN_PASSWORD=oatmealforbreakfast +ADMIN_API_PASSWORD=oatmealforbreakfast + +# Address at which the FreshRSS instance will be reachable: +BASE_URL=http://freshrss.home + +# Database server (not relevant if using default SQLite) +# Use the name of the Docker container if running on the same machine +DB_HOST=freshrss-db + +# =========================================================== +# Database credentials (not relevant if using default SQLite) +# =========================================================== + +# Database to use +DB_BASE=freshrss + +# User in the freshrss database +DB_USER=freshrss + +# Password for the defined user +DB_PASSWORD=freshrss diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8449871 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,24 @@ +version: "2.4" + +volumes: + data: + extensions: + +services: + freshrss: + image: freshrss/freshrss:edge + container_name: freshrss + restart: unless-stopped + logging: + options: + max-size: 10m + volumes: + - data:/var/www/FreshRSS/data + - extensions:/var/www/FreshRSS/extensions + ports: + # If you want to open a port 8080 on the local machine: + - "8087:80" + environment: + TZ: America/New_York + CRON_MIN: '2,32' + FRESHRSS_ENV: production