added docker files

This commit is contained in:
2023-07-28 18:51:28 -05:00
parent db0d8845c3
commit f544201203
86 changed files with 4393 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
version: '3'
services:
freshrss:
container_name: freshrss
hostname: freshrss
image: freshrss/freshrss:latest
environment:
- PUID=1000
- PGID=1000
- CRON_MIN=*/20
- TZ=America/Chicago
ports:
- 8080:80/tcp
restart: always
depends_on:
- freshrss-db
volumes:
- /docker/appdata/freshrss/data:/var/www/FreshRSS/data
- /docker/appdata/freshrss/extensions:/var/www/FreshRSS/extensions
- /etc/localtime:/etc/localtime:ro
freshrss-db:
container_name: freshrss-db
hostname: freshrss-db
image: postgres:12-alpine
environment:
- PUID=1000
- PGID=1000
- POSTGRES_USER=freshrss
- POSTGRES_PASSWORD=freshrss
- POSTGRES_DB=freshrss
restart: always
volumes:
- /docker/appdata/freshrss-db/data:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro