chore: remove commented-out services and add flaresolverr and ephemera services to docker compose configuration

This commit is contained in:
Nikholas Pcenicni
2025-12-29 03:33:47 -05:00
parent c471c839e3
commit 05cfe77f26
2 changed files with 103 additions and 51 deletions

View File

@@ -47,21 +47,7 @@ services:
ports:
- 8686:8686
restart: unless-stopped
# readarr:
# image: linuxserver/readarr:0.4.19-nightly
# container_name: readarr
# environment:
# - PUID=${PUID}
# - PGID=${PGID}
# - TZ=Canada/Eastern
# volumes:
# - ${CONFIG_PATH}/readarr:/config
# - ${DATA_PATH}/media/Calibre_Library:/books #optional
# - ${DATA_PATH}/usenet:/usenet #optional
# - ${DATA_PATH}/torrents:/torrents #optional
# ports:
# - 8787:8787
# restart: unless-stopped
bookshelf:
image: ghcr.io/pennydreadful/bookshelf:hardcover
container_name: bookshelf
@@ -77,6 +63,7 @@ services:
ports:
- 8787:8787
restart: unless-stopped
bazarr:
image: lscr.io/linuxserver/bazarr
container_name: bazarr
@@ -92,6 +79,7 @@ services:
ports:
- 6767:6767
restart: unless-stopped
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
@@ -103,6 +91,7 @@ services:
volumes:
- ${CONFIG_PATH}/jellyseerr:/app/config
restart: unless-stopped
prowlarr:
image: ghcr.io/linuxserver/prowlarr:develop
container_name: prowlarr
@@ -116,19 +105,6 @@ services:
- 9696:9696
restart: unless-stopped
# ytptube:
# user: "${PUID:-1000}:${PGID:-1000}" # change this to your user id and group id, for example: "1000:1000"
# image: ghcr.io/arabcoders/ytptube:latest
# container_name: ytptube
# restart: unless-stopped
# ports:
# - "8581:8081"
# volumes:
# - ${CONFIG_PATH}/ytptube:/config
# - ${DATA_PATH}/media/youtube:/downloads
# tmpfs:
# - /tmp
profilarr:
image: santiagosayshey/profilarr:latest # Use :beta for early access to new features
container_name: profilarr
@@ -138,4 +114,28 @@ services:
- /path/to/your/data:/config # Replace with your actual path
environment:
- TZ=UTC # Set your timezone
restart: unless-stopped
restart: unless-stopped
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
restart: unless-stopped
ports:
- 8191:8191
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=Canada/Eastern
# Set DNS server to prevent EU blocking
dns:
- 1.1.1.1
- 1.0.0.1
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8191/health"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3