moved all files up a folder

This commit is contained in:
2023-12-18 20:09:03 -06:00
parent 9535a5add9
commit 3465aab0f2
1057 changed files with 0 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