Compare commits
4 Commits
d92fb7629d
...
updates_ap
| Author | SHA1 | Date | |
|---|---|---|---|
| 55bccd376e | |||
| eca85225be | |||
| 36274d84f3 | |||
| c890837a79 |
26
ersatztv/compose.yml
Normal file
26
ersatztv/compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
ersatztv:
|
||||
image: ghcr.io/ersatztv/ersatztv
|
||||
container_name: ersatztv
|
||||
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
|
||||
|
||||
46
netbootxyz/compose.yml
Normal file
46
netbootxyz/compose.yml
Normal file
@@ -0,0 +1,46 @@
|
||||
services:
|
||||
netbootxyz:
|
||||
image: ghcr.io/netbootxyz/netbootxyz
|
||||
container_name: netbootxyz
|
||||
hostname: netbootxyz
|
||||
environment:
|
||||
- NGINX_PORT=80
|
||||
- WEB_APP_PORT=3000
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fejy/docker/netbootxyz/config:/config
|
||||
- /home/fejy/docker/netbootxyz/assets:/assets
|
||||
ports:
|
||||
- 69:69/udp
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
||||
interval: 2s
|
||||
timeout: 2s
|
||||
retries: 10
|
||||
start_period: 3s
|
||||
networks:
|
||||
- proxy
|
||||
- netbootxyz
|
||||
labels:
|
||||
# web configuration interface
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.netbootxyz.entrypoints=web"
|
||||
- "traefik.http.routers.netbootxyz.rule=Host(`netbootxyz.nearfuture`)"
|
||||
- "traefik.http.routers.netbootxyz.service=netbootxyz"
|
||||
- "traefik.http.services.netbootxyz.loadbalancer.server.port=3000"
|
||||
- "traefik.http.services.netbootxyz.loadbalancer.passhostheader=true"
|
||||
- "traefik.docker.network=proxy"
|
||||
# NGINX server for hosting assets
|
||||
- "traefik.http.routers.netboot-assets.entrypoints=web"
|
||||
- "traefik.http.routers.netboot-assets.rule=Host(`netboot-assets.nearfuture`)"
|
||||
- "traefik.http.routers.netboot-assets.service=netboot-assets"
|
||||
- "traefik.http.services.netboot-assets.loadbalancer.server.port=80"
|
||||
- "traefik.http.services.netboot-assets.loadbalancer.passhostheader=true"
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
name: proxy
|
||||
external: true
|
||||
netbootxyz:
|
||||
name: netbootxyz
|
||||
19
pinchflat/compose.yml
Normal file
19
pinchflat/compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
pinchflat:
|
||||
image: ghcr.io/kieraneglin/pinchflat:latest
|
||||
container_name: pinchflat
|
||||
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
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user