This commit is contained in:
@@ -3,6 +3,7 @@ services:
|
||||
#https://github.com/sassanix/Warracker
|
||||
warracker:
|
||||
image: ghcr.io/sassanix/warracker/main:latest
|
||||
container_name: warracker
|
||||
ports:
|
||||
- "8005:80"
|
||||
volumes:
|
||||
@@ -15,6 +16,7 @@ services:
|
||||
restart: unless-stopped
|
||||
|
||||
warrackerdb:
|
||||
container_name: warracker-db
|
||||
image: postgres:15-alpine
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
@@ -26,8 +28,6 @@ services:
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
|
||||
freshrss:
|
||||
image: freshrss/freshrss:latest
|
||||
# # Optional build section if you want to build the image locally:
|
||||
@@ -57,8 +57,56 @@ services:
|
||||
interval: 75s
|
||||
retries: 3
|
||||
|
||||
umami:
|
||||
image: ghcr.io/umami-software/umami:latest
|
||||
container_name: umami
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||
APP_SECRET: replace-me-with-a-random-string
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
init: true
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
umami-db:
|
||||
container_name: umami-db
|
||||
image: postgres:15-alpine
|
||||
environment:
|
||||
POSTGRES_DB: umami
|
||||
POSTGRES_USER: umami
|
||||
POSTGRES_PASSWORD: umami
|
||||
volumes:
|
||||
- umami-db-data:/var/lib/postgresql/data
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
wallos:
|
||||
container_name: wallos
|
||||
image: bellamy/wallos:latest
|
||||
ports:
|
||||
- "8282:80/tcp"
|
||||
environment:
|
||||
TZ: 'America/Chicago'
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- './db:/var/www/html/db'
|
||||
- './logos:/var/www/html/images/uploads/logos'
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
warracker_uploads:
|
||||
RSSdata:
|
||||
RSSextensions:
|
||||
RSSextensions:
|
||||
umami-db-data:
|
||||
@@ -83,49 +83,47 @@ services:
|
||||
ports:
|
||||
- 5656:5656
|
||||
#IPTV
|
||||
# dispatcharr:
|
||||
# # build:
|
||||
# # context: .
|
||||
# # dockerfile: Dockerfile
|
||||
# image: ghcr.io/dispatcharr/dispatcharr:latest
|
||||
# restart: unless-stopped
|
||||
# container_name: dispatcharr
|
||||
# ports:
|
||||
# - 9191:9191
|
||||
# volumes:
|
||||
# - dispatcharr_data:/data
|
||||
# environment:
|
||||
# - DISPATCHARR_ENV=aio
|
||||
# - REDIS_HOST=localhost
|
||||
# - CELERY_BROKER_URL=redis://localhost:6379/0
|
||||
# - DISPATCHARR_LOG_LEVEL=info
|
||||
# # Legacy CPU Support (Optional)
|
||||
# # Uncomment to enable legacy NumPy build for older CPUs (circa 2009)
|
||||
# # that lack support for newer baseline CPU features
|
||||
# #- USE_LEGACY_NUMPY=true
|
||||
# # Process Priority Configuration (Optional)
|
||||
# # Lower values = higher priority. Range: -20 (highest) to 19 (lowest)
|
||||
# # Negative values require cap_add: SYS_NICE (uncomment below)
|
||||
# #- UWSGI_NICE_LEVEL=-5 # uWSGI/FFmpeg/Streaming (default: 0, recommended: -5 for high priority)
|
||||
# #- CELERY_NICE_LEVEL=5 # Celery/EPG/Background tasks (default: 5, low priority)
|
||||
# #
|
||||
# # Uncomment to enable high priority for streaming (required if UWSGI_NICE_LEVEL < 0)
|
||||
# #cap_add:
|
||||
# # - SYS_NICE
|
||||
# # Optional for hardware acceleration
|
||||
# #devices:
|
||||
# # - /dev/dri:/dev/dri # For Intel/AMD GPU acceleration (VA-API)
|
||||
# # Uncomment the following lines for NVIDIA GPU support
|
||||
# # NVidia GPU support (requires NVIDIA Container Toolkit)
|
||||
# #deploy:
|
||||
# # resources:
|
||||
# # reservations:
|
||||
# # devices:
|
||||
# # - driver: nvidia
|
||||
# # count: all
|
||||
# # capabilities: [gpu]
|
||||
# volumes:
|
||||
# dispatcharr_data:
|
||||
dispatcharr:
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: Dockerfile
|
||||
image: ghcr.io/dispatcharr/dispatcharr:latest
|
||||
restart: unless-stopped
|
||||
container_name: dispatcharr
|
||||
ports:
|
||||
- 9191:9191
|
||||
volumes:
|
||||
- dispatcharr_data:/data
|
||||
environment:
|
||||
- DISPATCHARR_ENV=aio
|
||||
- REDIS_HOST=localhost
|
||||
- CELERY_BROKER_URL=redis://localhost:6379/0
|
||||
- DISPATCHARR_LOG_LEVEL=info
|
||||
# Legacy CPU Support (Optional)
|
||||
# Uncomment to enable legacy NumPy build for older CPUs (circa 2009)
|
||||
# that lack support for newer baseline CPU features
|
||||
#- USE_LEGACY_NUMPY=true
|
||||
# Process Priority Configuration (Optional)
|
||||
# Lower values = higher priority. Range: -20 (highest) to 19 (lowest)
|
||||
# Negative values require cap_add: SYS_NICE (uncomment below)
|
||||
#- UWSGI_NICE_LEVEL=-5 # uWSGI/FFmpeg/Streaming (default: 0, recommended: -5 for high priority)
|
||||
#- CELERY_NICE_LEVEL=5 # Celery/EPG/Background tasks (default: 5, low priority)
|
||||
#
|
||||
# Uncomment to enable high priority for streaming (required if UWSGI_NICE_LEVEL < 0)
|
||||
#cap_add:
|
||||
# - SYS_NICE
|
||||
# Optional for hardware acceleration
|
||||
#devices:
|
||||
# - /dev/dri:/dev/dri # For Intel/AMD GPU acceleration (VA-API)
|
||||
# Uncomment the following lines for NVIDIA GPU support
|
||||
# NVidia GPU support (requires NVIDIA Container Toolkit)
|
||||
#deploy:
|
||||
# resources:
|
||||
# reservations:
|
||||
# devices:
|
||||
# - driver: nvidia
|
||||
# count: all
|
||||
# capabilities: [gpu]
|
||||
|
||||
#Sports
|
||||
sportarr:
|
||||
@@ -141,4 +139,7 @@ services:
|
||||
- /home/mediaCenter/Media/Video/Sports:/sports
|
||||
ports:
|
||||
- 1867:1867
|
||||
restart: unless-stopped
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
dispatcharr_data:
|
||||
@@ -1,35 +0,0 @@
|
||||
---
|
||||
services:
|
||||
umami:
|
||||
image: ghcr.io/umami-software/umami:latest
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||
APP_SECRET: replace-me-with-a-random-string
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
init: true
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
db:
|
||||
image: postgres:15-alpine
|
||||
environment:
|
||||
POSTGRES_DB: umami
|
||||
POSTGRES_USER: umami
|
||||
POSTGRES_PASSWORD: umami
|
||||
volumes:
|
||||
- umami-db-data:/var/lib/postgresql/data
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
volumes:
|
||||
umami-db-data:
|
||||
@@ -1,13 +1,13 @@
|
||||
services:
|
||||
wallos:
|
||||
container_name: wallos
|
||||
image: bellamy/wallos:latest
|
||||
ports:
|
||||
- "8282:80/tcp"
|
||||
environment:
|
||||
TZ: 'America/Chicago'
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- './db:/var/www/html/db'
|
||||
- './logos:/var/www/html/images/uploads/logos'
|
||||
restart: unless-stopped
|
||||
# services:
|
||||
# wallos:
|
||||
# container_name: wallos
|
||||
# image: bellamy/wallos:latest
|
||||
# ports:
|
||||
# - "8282:80/tcp"
|
||||
# environment:
|
||||
# TZ: 'America/Chicago'
|
||||
# # Volumes store your data between container upgrades
|
||||
# volumes:
|
||||
# - './db:/var/www/html/db'
|
||||
# - './logos:/var/www/html/images/uploads/logos'
|
||||
# restart: unless-stopped
|
||||
Reference in New Issue
Block a user