merging NOC
All checks were successful
Test Action / test (push) Successful in 3s

This commit is contained in:
Aaron Pierson
2026-03-11 08:50:24 -05:00
parent 5f4ea32e9d
commit 81b94aecc4
4 changed files with 109 additions and 95 deletions

View File

@@ -3,6 +3,7 @@ services:
#https://github.com/sassanix/Warracker #https://github.com/sassanix/Warracker
warracker: warracker:
image: ghcr.io/sassanix/warracker/main:latest image: ghcr.io/sassanix/warracker/main:latest
container_name: warracker
ports: ports:
- "8005:80" - "8005:80"
volumes: volumes:
@@ -15,6 +16,7 @@ services:
restart: unless-stopped restart: unless-stopped
warrackerdb: warrackerdb:
container_name: warracker-db
image: postgres:15-alpine image: postgres:15-alpine
volumes: volumes:
- postgres_data:/var/lib/postgresql/data - postgres_data:/var/lib/postgresql/data
@@ -26,8 +28,6 @@ services:
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 5 retries: 5
freshrss: freshrss:
image: freshrss/freshrss:latest image: freshrss/freshrss:latest
# # Optional build section if you want to build the image locally: # # Optional build section if you want to build the image locally:
@@ -57,8 +57,56 @@ services:
interval: 75s interval: 75s
retries: 3 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: volumes:
postgres_data: postgres_data:
warracker_uploads: warracker_uploads:
RSSdata: RSSdata:
RSSextensions: RSSextensions:
umami-db-data:

View File

@@ -83,49 +83,47 @@ services:
ports: ports:
- 5656:5656 - 5656:5656
#IPTV #IPTV
# dispatcharr: dispatcharr:
# # build: # build:
# # context: . # context: .
# # dockerfile: Dockerfile # dockerfile: Dockerfile
# image: ghcr.io/dispatcharr/dispatcharr:latest image: ghcr.io/dispatcharr/dispatcharr:latest
# restart: unless-stopped restart: unless-stopped
# container_name: dispatcharr container_name: dispatcharr
# ports: ports:
# - 9191:9191 - 9191:9191
# volumes: volumes:
# - dispatcharr_data:/data - dispatcharr_data:/data
# environment: environment:
# - DISPATCHARR_ENV=aio - DISPATCHARR_ENV=aio
# - REDIS_HOST=localhost - REDIS_HOST=localhost
# - CELERY_BROKER_URL=redis://localhost:6379/0 - CELERY_BROKER_URL=redis://localhost:6379/0
# - DISPATCHARR_LOG_LEVEL=info - DISPATCHARR_LOG_LEVEL=info
# # Legacy CPU Support (Optional) # Legacy CPU Support (Optional)
# # Uncomment to enable legacy NumPy build for older CPUs (circa 2009) # Uncomment to enable legacy NumPy build for older CPUs (circa 2009)
# # that lack support for newer baseline CPU features # that lack support for newer baseline CPU features
# #- USE_LEGACY_NUMPY=true #- USE_LEGACY_NUMPY=true
# # Process Priority Configuration (Optional) # Process Priority Configuration (Optional)
# # Lower values = higher priority. Range: -20 (highest) to 19 (lowest) # Lower values = higher priority. Range: -20 (highest) to 19 (lowest)
# # Negative values require cap_add: SYS_NICE (uncomment below) # Negative values require cap_add: SYS_NICE (uncomment below)
# #- UWSGI_NICE_LEVEL=-5 # uWSGI/FFmpeg/Streaming (default: 0, recommended: -5 for high priority) #- 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) #- 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) # Uncomment to enable high priority for streaming (required if UWSGI_NICE_LEVEL < 0)
# #cap_add: #cap_add:
# # - SYS_NICE # - SYS_NICE
# # Optional for hardware acceleration # Optional for hardware acceleration
# #devices: #devices:
# # - /dev/dri:/dev/dri # For Intel/AMD GPU acceleration (VA-API) # - /dev/dri:/dev/dri # For Intel/AMD GPU acceleration (VA-API)
# # Uncomment the following lines for NVIDIA GPU support # Uncomment the following lines for NVIDIA GPU support
# # NVidia GPU support (requires NVIDIA Container Toolkit) # NVidia GPU support (requires NVIDIA Container Toolkit)
# #deploy: #deploy:
# # resources: # resources:
# # reservations: # reservations:
# # devices: # devices:
# # - driver: nvidia # - driver: nvidia
# # count: all # count: all
# # capabilities: [gpu] # capabilities: [gpu]
# volumes:
# dispatcharr_data:
#Sports #Sports
sportarr: sportarr:
@@ -141,4 +139,7 @@ services:
- /home/mediaCenter/Media/Video/Sports:/sports - /home/mediaCenter/Media/Video/Sports:/sports
ports: ports:
- 1867:1867 - 1867:1867
restart: unless-stopped restart: unless-stopped
volumes:
dispatcharr_data:

View File

@@ -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:

View File

@@ -1,13 +1,13 @@
services: # services:
wallos: # wallos:
container_name: wallos # container_name: wallos
image: bellamy/wallos:latest # image: bellamy/wallos:latest
ports: # ports:
- "8282:80/tcp" # - "8282:80/tcp"
environment: # environment:
TZ: 'America/Chicago' # TZ: 'America/Chicago'
# Volumes store your data between container upgrades # # Volumes store your data between container upgrades
volumes: # volumes:
- './db:/var/www/html/db' # - './db:/var/www/html/db'
- './logos:/var/www/html/images/uploads/logos' # - './logos:/var/www/html/images/uploads/logos'
restart: unless-stopped # restart: unless-stopped