Compare commits

...

3 Commits

Author SHA1 Message Date
a9234426f3 updates_apr21 (#13)
Reviewed-on: #13
2026-04-21 07:48:36 -07:00
7605047dbd Merge pull request 'Adding Ersatztv for custom tv streaming' (#12) from updates_apr18 into master
Reviewed-on: #12
2026-04-17 21:39:56 -07:00
eca85225be Adding Ersatztv for custom tv streaming
Adding Pinchflat for youtube downloads
2026-04-18 04:37:55 +00:00
10 changed files with 63 additions and 28 deletions

View File

@@ -24,6 +24,8 @@ services:
- PUID=1029
- PGID=1000
- TZ=Etc/UTC
ports:
- "7878:7878"
volumes:
- /home/fejy/docker/radarr:/config
- /mnt/LUXURIA/Share:/Share
@@ -44,6 +46,8 @@ services:
- PUID=1029
- PGID=1000
- TZ=Etc/UTC
ports:
- "8989:8989"
volumes:
- /home/fejy/docker/sonarr:/config
- /mnt/LUXURIA/Share:/Share

View File

@@ -1,6 +1,7 @@
services:
dozzle:
image: amir20/dozzle:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/fejy/docker/dozzle_data:/data

28
ersatztv/compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
ersatztv:
image: ghcr.io/ersatztv/ersatztv
container_name: ersatztv
ports:
- "8409:8409"
environment:
- TZ=America/New_York
volumes:
- /home/fejy/docker/ersatztv/config:/config
# Required: media directories - Where your media files are stored. Use :ro at the end of the path to limit container to Read-Only
- /mnt/LUXURIA/Share/Videos:/mnt/LUXURIA/Share/Videos:ro
- /mnt/AVARITIA/Share/Videos:/mnt/AVARITIA/Share/Videos:ro
# tmpfs is optional but recommended: Limits writing to SSD/disk by using RAM for transcode files. Comment out to disable
tmpfs:
- /transcode
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.tv.entrypoints=web"
- "traefik.http.routers.tv.rule=Host(`tv.nearfuture`)"
networks:
- proxy
networks:
proxy:
external: true

View File

@@ -5,7 +5,7 @@ services:
environment:
- PUID=1029
- PGID=1000
restart: on-failure
restart: unless-stopped
networks:
- proxy
labels:

View File

@@ -5,12 +5,12 @@ services:
env_file: ".env"
environment:
PUID: 1029
PGID: 1000
PGID: 988
HOMEPAGE_ALLOWED_HOSTS: home.nearfuture
volumes:
- /home/fejy/docker/homepage/config:/app/config
- /home/fejy/docker/homepage/icons:/app/public/icons
# - /var/run/docker.sock:/var/run/docker.sock:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped
networks:
- proxy

View File

@@ -1,6 +1,7 @@
services:
matrix-registration-bot:
image: moanos/matrix-registration-bot:latest
restart: unless-stopped
environment:
LOGGING_LEVEL: DEBUG
BOT_SERVER: "https://nearfuture.industries"

20
pinchflat/compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
pinchflat:
image: ghcr.io/kieraneglin/pinchflat:latest
container_name: pinchflat
restart: unless-stopped
environment:
- TZ=America/New_York
volumes:
- /home/fejy/docker/pinchflat/config:/config
- /mnt/AVARITIA/Share/Videos/:/downloads
labels:
- "traefik.enable=true"
- "traefik.http.routers.pinchflat.entrypoints=web"
- "traefik.http.routers.pinchflat.rule=Host(`pinchflat.nearfuture`)"
networks:
- proxy
networks:
proxy:
external: true

View File

@@ -67,7 +67,7 @@ services:
- "traefik.http.routers.mousehole.service=mousehole"
- "traefik.http.services.mousehole.loadbalancer.server.port=5010"
# Watchtower
- "com.centurylinklabs.watchtower.scope=watch"
#- "com.centurylinklabs.watchtower.scope=watch"
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:libtorrentv1
@@ -146,7 +146,7 @@ services:
container_name: mousehole
network_mode: "service:gluetun"
environment:
TZ: Etc/UTC
- TZ=Etc/UTC
volumes:
- /home/fejy/docker/mousehole:/srv/mousehole
depends_on:

View File

@@ -41,27 +41,6 @@ services:
- "traefik.http.routers.scrutiny.entryPoints=web"
- "traefik.http.routers.scrutiny.rule=Host(`scrutiny.nearfuture`)"
collector:
restart: unless-stopped
image: 'ghcr.io/analogj/scrutiny:v0.8-collector'
cap_add:
- SYS_RAWIO
volumes:
- '/run/udev:/run/udev:ro'
environment:
COLLECTOR_API_ENDPOINT: 'http://web:8080'
COLLECTOR_HOST_ID: 'Invidia'
# If true forces the collector to run on startup (cron will be started after the collector completes)
# see: https://github.com/AnalogJ/scrutiny/blob/master/docs/TROUBLESHOOTING_DEVICE_COLLECTOR.md#collector-trigger-on-startup
COLLECTOR_RUN_STARTUP: true
depends_on:
web:
condition: service_healthy
networks:
- scrutiny
devices:
- "/dev/sda:/dev/sda"
networks:
proxy:
external: true

View File

@@ -1,10 +1,12 @@
version: '3'
services:
watchtower:
image: containrrr/watchtower
image: nickfedor/watchtower
container_name: watchtower
command: --cleanup=true --scope watch
restart: always
restart: unless-stopped
environment:
- DOCKER_API_VERSION="1.49"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
labels: