64 lines
1.6 KiB
YAML
64 lines
1.6 KiB
YAML
services:
|
|
#Warranty tacker
|
|
#https://github.com/sassanix/Warracker
|
|
warracker:
|
|
image: ghcr.io/sassanix/warracker/main:latest
|
|
ports:
|
|
- "8005:80"
|
|
volumes:
|
|
- warracker_uploads:/data/uploads
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
warrackerdb:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
|
|
warrackerdb:
|
|
image: postgres:15-alpine
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
|
|
freshrss:
|
|
image: freshrss/freshrss:latest
|
|
# # Optional build section if you want to build the image locally:
|
|
# build:
|
|
# # Pick #latest (slow releases) or #edge (rolling release) or a specific release like #1.27.1
|
|
# context: https://github.com/FreshRSS/FreshRSS.git#latest
|
|
# dockerfile: Docker/Dockerfile-Alpine
|
|
container_name: freshrss
|
|
hostname: freshrss
|
|
restart: unless-stopped
|
|
logging:
|
|
options:
|
|
max-size: 10m
|
|
volumes:
|
|
- RSSdata:/var/www/FreshRSS/data
|
|
- RSSextensions:/var/www/FreshRSS/extensions
|
|
environment:
|
|
TZ: America/Chicago
|
|
CRON_MIN: '3,33'
|
|
TRUSTED_PROXY: 172.16.0.1/12 192.168.0.1/16
|
|
# # Optional healthcheck section:
|
|
healthcheck:
|
|
test: ["CMD", "cli/health.php"]
|
|
timeout: 10s
|
|
start_period: 60s
|
|
start_interval: 11s
|
|
interval: 75s
|
|
retries: 3
|
|
|
|
volumes:
|
|
postgres_data:
|
|
warracker_uploads:
|
|
RSSdata:
|
|
RSSextensions: |