stuff
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
This commit is contained in:
parent
7c1e1aa48e
commit
fcdd8ec832
55
Caddyfile
Normal file
55
Caddyfile
Normal file
@ -0,0 +1,55 @@
|
||||
# Global options
|
||||
{
|
||||
admin off
|
||||
auto_https off
|
||||
}
|
||||
|
||||
# Jellyfin - Media Server
|
||||
jellyfin.localhost {
|
||||
reverse_proxy localhost:2000
|
||||
}
|
||||
|
||||
# qBittorrent - Torrent Client
|
||||
qbittorrent.localhost {
|
||||
reverse_proxy localhost:2001
|
||||
}
|
||||
|
||||
# SABnzbd - Usenet Client
|
||||
sabnzbd.localhost {
|
||||
reverse_proxy localhost:2002
|
||||
}
|
||||
|
||||
# Sonarr - TV Show Management
|
||||
sonarr.localhost {
|
||||
reverse_proxy localhost:2003
|
||||
}
|
||||
|
||||
# Radarr - Movie Management
|
||||
radarr.localhost {
|
||||
reverse_proxy localhost:2004
|
||||
}
|
||||
|
||||
# Lidarr - Music Management
|
||||
lidarr.localhost {
|
||||
reverse_proxy localhost:2006
|
||||
}
|
||||
|
||||
# Readarr - Book Management
|
||||
readarr.localhost {
|
||||
reverse_proxy localhost:2007
|
||||
}
|
||||
|
||||
# Bazarr - Subtitle Management
|
||||
bazarr.localhost {
|
||||
reverse_proxy localhost:2008
|
||||
}
|
||||
|
||||
# Prowlarr - Indexer Management
|
||||
prowlarr.localhost {
|
||||
reverse_proxy localhost:2009
|
||||
}
|
||||
|
||||
# Gluetun Admin Interface
|
||||
gluetun.localhost {
|
||||
reverse_proxy localhost:8003
|
||||
}
|
||||
@ -1,16 +1,13 @@
|
||||
version:
|
||||
workflow_dispatch: '3.2'
|
||||
version: '3.2'
|
||||
services:
|
||||
changedetection:
|
||||
workflow_dispatch:
|
||||
image: ghcr.io/dgtlmoon/changedetection.io
|
||||
container_name: changedetection
|
||||
hostname: changedetection
|
||||
volumes:
|
||||
- changedetection_data:/datastore
|
||||
# Configurable proxy list support, see https://github.com/dgtlmoon/changedetection.io/wiki/Proxy-configuration#proxy-list-support
|
||||
# - ./proxies.json:
|
||||
workflow_dispatch:/datastore/proxies.json
|
||||
# - ./proxies.json:/datastore/proxies.json
|
||||
|
||||
# environment:
|
||||
# Default listening port, can also be changed with the -p option
|
||||
@ -80,10 +77,8 @@ services:
|
||||
# If WEBDRIVER or PLAYWRIGHT are enabled, changedetection container depends on that
|
||||
# and must wait before starting (substitute "browser-chrome" with "playwright-chrome" if last one is used)
|
||||
# depends_on:
|
||||
workflow_dispatch:
|
||||
# sockpuppetbrowser:
|
||||
# condition:
|
||||
workflow_dispatch: service_started
|
||||
# condition: service_started
|
||||
|
||||
|
||||
# Sockpuppetbrowser is basically chrome wrapped in an API for allowing fast fetching of web-pages.
|
||||
|
||||
@ -9,11 +9,9 @@ services:
|
||||
- "1006:7777"
|
||||
labels:
|
||||
glance.name: Hastebin
|
||||
glance.icon:
|
||||
workflow_dispatch: si:jellyfin
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://hastebin.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Private Note Bin
|
||||
glance.description: Private Note Bin
|
||||
glance.hide: false
|
||||
hastebinredis:
|
||||
container_name: hastebinredis
|
||||
|
||||
@ -20,11 +20,9 @@ services:
|
||||
- default
|
||||
labels:
|
||||
glance.name: Navidrome
|
||||
glance.icon:
|
||||
workflow_dispatch: si:applemusic
|
||||
glance.icon: si:applemusic
|
||||
glance.url: https://navidrome.geezo.io
|
||||
glance.description:
|
||||
workflow_dispatch: Music Server
|
||||
glance.description: Music Server
|
||||
glance.hide: false
|
||||
|
||||
volumes:
|
||||
|
||||
@ -51,7 +51,6 @@ services:
|
||||
restart: unless-stopped
|
||||
user: 1000:1000
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- db
|
||||
- broker
|
||||
ports:
|
||||
@ -68,11 +67,9 @@ services:
|
||||
PAPERLESS_URL: https://paperless.theocorp
|
||||
labels:
|
||||
glance.name: Paperless
|
||||
glance.icon:
|
||||
workflow_dispatch: si:paperlessngx
|
||||
glance.icon: si:paperlessngx
|
||||
glance.url: https://paperless.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Document Storage
|
||||
glance.description: Document Storage
|
||||
glance.hide: false
|
||||
|
||||
volumes:
|
||||
|
||||
@ -52,13 +52,10 @@ services:
|
||||
- "${COMPOSE_PORT_HTTP:-9000}:9000"
|
||||
- "${COMPOSE_PORT_HTTPS:-9443}:9443"
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
postgresql:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
worker:
|
||||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.1}
|
||||
restart: unless-stopped
|
||||
@ -84,13 +81,10 @@ services:
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
postgresql:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
|
||||
volumes:
|
||||
database:
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: 2
|
||||
version: 2
|
||||
|
||||
backends:
|
||||
aws_s3:
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: 2
|
||||
version: 2
|
||||
|
||||
backends:
|
||||
albatross:
|
||||
|
||||
@ -16,11 +16,9 @@ services:
|
||||
image: daya0576/beaverhabits:latest
|
||||
labels:
|
||||
glance.name: BeaverHabits
|
||||
glance.icon:
|
||||
workflow_dispatch: si:checkmarx
|
||||
glance.icon: si:checkmarx
|
||||
glance.url: "https://habits.theocorp"
|
||||
glance.description:
|
||||
workflow_dispatch: Habit Tacker
|
||||
glance.description: Habit Tacker
|
||||
glance.hide: false
|
||||
networks:
|
||||
- default
|
||||
|
||||
@ -11,11 +11,9 @@ services:
|
||||
- ./beszel_data:/beszel_data
|
||||
labels:
|
||||
glance.name: Beszel
|
||||
glance.icon:
|
||||
workflow_dispatch: si:jellyfin
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://beszel.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Server Monitoring
|
||||
glance.description: Server Monitoring
|
||||
glance.hide: false
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
|
||||
gitea.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy gitea:3000
|
||||
@ -73,3 +72,53 @@ habits.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy beaverhabits:8080
|
||||
}
|
||||
|
||||
jellyfin.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2000
|
||||
}
|
||||
|
||||
qbittorrent.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2001
|
||||
}
|
||||
|
||||
sabnzbd.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2002
|
||||
}
|
||||
|
||||
sonarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2003
|
||||
}
|
||||
|
||||
radarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2004
|
||||
}
|
||||
|
||||
lidarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2006
|
||||
}
|
||||
|
||||
readarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2007
|
||||
}
|
||||
|
||||
bazarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2008
|
||||
}
|
||||
|
||||
prowlarr.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:2009
|
||||
}
|
||||
|
||||
gluetun.theocorp {
|
||||
tls /certs/theocorp+4.pem /certs/theocorp+4-key.pem
|
||||
reverse_proxy localhost:8003
|
||||
}
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: '3.8'
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
cup:
|
||||
|
||||
@ -8,11 +8,9 @@ services:
|
||||
- 1015:8080
|
||||
labels:
|
||||
glance.name: Dozzle
|
||||
glance.icon:
|
||||
workflow_dispatch: si:jellyfin
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://dozzle.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Container Logs
|
||||
glance.description: Container Logs
|
||||
glance.hide: false
|
||||
restart: unless-stopped
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: "3"
|
||||
version: "3"
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
@ -28,7 +27,6 @@ services:
|
||||
- "1001:3000"
|
||||
- "222:22"
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- postgres
|
||||
postgres:
|
||||
image: postgres:14
|
||||
|
||||
@ -54,8 +54,7 @@ pages:
|
||||
widgets:
|
||||
- type: calendar
|
||||
- type: releases
|
||||
show-source-icon:
|
||||
workflow_dispatch: true
|
||||
show-source-icon: true
|
||||
repositories:
|
||||
- hoarder-app/hoarder
|
||||
- glanceapp/glance
|
||||
|
||||
@ -1,10 +1,8 @@
|
||||
version:
|
||||
workflow_dispatch: "3.8"
|
||||
version: "3.8"
|
||||
services:
|
||||
web:
|
||||
container_name: hoarder
|
||||
image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSIon:
|
||||
workflow_dispatch:-release}
|
||||
image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSIon:-release}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- hoarder_data:/data
|
||||
@ -21,11 +19,9 @@ services:
|
||||
- default
|
||||
labels:
|
||||
glance.name: Hoarder
|
||||
glance.icon:
|
||||
workflow_dispatch: si:jellyfin
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://hoarder.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Link saving
|
||||
glance.description: Link saving
|
||||
glance.hide: false
|
||||
chrome:
|
||||
container_name: hoarder-chrome
|
||||
|
||||
@ -11,8 +11,7 @@ name: immich
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich
|
||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSIon:
|
||||
workflow_dispatch:-release}
|
||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSIon:-release}
|
||||
# extends:
|
||||
# file: hwaccel.transcoding.yml
|
||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
@ -25,7 +24,6 @@ services:
|
||||
ports:
|
||||
- '2283:2283'
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- redis
|
||||
- database
|
||||
restart: always
|
||||
@ -33,20 +31,16 @@ services:
|
||||
disable: false
|
||||
labels:
|
||||
glance.name: Immich
|
||||
glance.icon:
|
||||
workflow_dispatch: si:immich
|
||||
glance.icon: si:immich
|
||||
glance.url: https://immich.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Picture Storage Cloud
|
||||
glance.description: Picture Storage Cloud
|
||||
glance.hide: false
|
||||
|
||||
immich-machine-learning:
|
||||
container_name: immich-machine-learning
|
||||
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
|
||||
# Example tag: ${IMMICH_VERSIon:
|
||||
workflow_dispatch:-release}-cuda
|
||||
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSIon:
|
||||
workflow_dispatch:-release}
|
||||
# Example tag: ${IMMICH_VERSIon:-release}-cuda
|
||||
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSIon:-release}
|
||||
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
|
||||
# file: hwaccel.ml.yml
|
||||
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: '3.8'
|
||||
version: '3.8'
|
||||
|
||||
volumes:
|
||||
db_data:
|
||||
@ -46,7 +45,5 @@ services:
|
||||
volumes:
|
||||
- n8n_data:/home/node/.n8n
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
postgres:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: '3.8'
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
netbird:
|
||||
|
||||
@ -36,11 +36,9 @@ services:
|
||||
- default
|
||||
labels:
|
||||
glance.name: NextCloud
|
||||
glance.icon:
|
||||
workflow_dispatch: si:nextcloud
|
||||
glance.icon: si:nextcloud
|
||||
glance.url: https://cloud.geezo.io
|
||||
glance.description:
|
||||
workflow_dispatch: Private Cloud
|
||||
glance.description: Private Cloud
|
||||
glance.hide: false
|
||||
|
||||
networks:
|
||||
|
||||
@ -1,10 +1,8 @@
|
||||
actions:
|
||||
- title: backup containers
|
||||
shell: "docker run --rm -d --privileged -v /home/geezo/docker_containers/autorestic:/data -v /var/run/docker.sock:/var/run/docker.sock cupcakearmy/autorestic autorestic backup -va -c /data/config.yaml"
|
||||
icon:
|
||||
workflow_dispatch: <iconify-icon icon="lets-icons:save-duotone" width="48" height="24"></iconify-icon>
|
||||
icon: <iconify-icon icon="lets-icons:save-duotone" width="48" height="24"></iconify-icon>
|
||||
execOnCron:
|
||||
workflow_dispatch:
|
||||
- "@daily"
|
||||
- title: deploy all containers
|
||||
shell: |
|
||||
@ -19,8 +17,7 @@ actions:
|
||||
echo "Warning: No docker-compose file found in ${dir}"
|
||||
fi
|
||||
done < service_order.txt
|
||||
icon:
|
||||
workflow_dispatch: <iconify-icon icon="mdi:docker" width="48" height="24"></iconify-icon>
|
||||
icon: <iconify-icon icon="mdi:docker" width="48" height="24"></iconify-icon>
|
||||
timeout: 60
|
||||
|
||||
|
||||
|
||||
@ -15,9 +15,7 @@ services:
|
||||
command: apt-get install docker-compose-plugin
|
||||
labels:
|
||||
glance.name: Olivetin
|
||||
glance.icon:
|
||||
workflow_dispatch: si:purescript
|
||||
glance.icon: si:purescript
|
||||
glance.url: https://olivetin.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Canned Scripts UI
|
||||
glance.description: Canned Scripts UI
|
||||
glance.hide: false
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: "3.8"
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
mysql:
|
||||
@ -20,7 +19,6 @@ services:
|
||||
image: ghcr.io/operational-co/operational.co:0.1.7
|
||||
container_name: operational-app
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- mysql
|
||||
restart: always
|
||||
ports:
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: "3"
|
||||
version: "3"
|
||||
services:
|
||||
portainer:
|
||||
container_name: portainer
|
||||
@ -12,11 +11,9 @@ services:
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Portainer
|
||||
glance.icon:
|
||||
workflow_dispatch: si:portainer
|
||||
glance.icon: si:portainer
|
||||
glance.url: https://portainer.theocorp
|
||||
glance.description:
|
||||
workflow_dispatch: Container Management UI
|
||||
glance.description: Container Management UI
|
||||
glance.hide: false
|
||||
volumes:
|
||||
portainer_data:
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: '3'
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
tubearchivist:
|
||||
@ -21,8 +20,7 @@ services:
|
||||
ELASTIC_PASSWORD: verysecret
|
||||
TZ: America/New_York
|
||||
TA_PORT: 9000
|
||||
REDIS_Con:
|
||||
workflow_dispatch: redis://archivist-redis:6379
|
||||
REDIS_Con: redis://archivist-redis:6379
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
||||
interval: 2m
|
||||
@ -30,7 +28,6 @@ services:
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- archivist-es
|
||||
- archivist-redis
|
||||
networks:
|
||||
@ -46,7 +43,6 @@ services:
|
||||
volumes:
|
||||
- redis:/data
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
- archivist-es
|
||||
|
||||
archivist-es:
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
version:
|
||||
workflow_dispatch: '3'
|
||||
version: '3'
|
||||
services:
|
||||
watchtower:
|
||||
container_name: watchtower
|
||||
|
||||
@ -16,6 +16,12 @@ services:
|
||||
# plex
|
||||
- 2000:8096 # plex
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Jellyfin
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://jellyfin.theocorp
|
||||
glance.description: Media Server
|
||||
glance.hide: false
|
||||
# qBitorrent is used to download torrents
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent
|
||||
@ -33,10 +39,14 @@ services:
|
||||
# - 8081:8081 # qbittorrent
|
||||
network_mode: service:gluetun
|
||||
depends_on:
|
||||
workflow_dispatch:
|
||||
gluetun:
|
||||
condition:
|
||||
workflow_dispatch: service_healthy
|
||||
condition: service_healthy
|
||||
labels:
|
||||
glance.name: qBittorrent
|
||||
glance.icon: si:qbittorrent
|
||||
glance.url: https://qbittorrent.theocorp
|
||||
glance.description: Torrent Client
|
||||
glance.hide: false
|
||||
# SABnzbd is used to download from usenet
|
||||
sabnzbd:
|
||||
image: lscr.io/linuxserver/sabnzbd:latest
|
||||
@ -53,6 +63,12 @@ services:
|
||||
#- 8080:8080 # sabnzbd
|
||||
restart: unless-stopped
|
||||
network_mode: service:gluetun
|
||||
labels:
|
||||
glance.name: SABnzbd
|
||||
glance.icon: si:sabnzbd
|
||||
glance.url: https://sabnzbd.theocorp
|
||||
glance.description: Usenet Client
|
||||
glance.hide: false
|
||||
# Sonarr is used to query, add downloads to the download queue and index TV shows
|
||||
# https://sonarr.tv/
|
||||
sonarr:
|
||||
@ -68,6 +84,12 @@ services:
|
||||
ports:
|
||||
- 2003:8989
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Sonarr
|
||||
glance.icon: si:sonarr
|
||||
glance.url: https://sonarr.theocorp
|
||||
glance.description: TV Show Management
|
||||
glance.hide: false
|
||||
# Radarr is used to query, add downloads to the download queue and index Movies
|
||||
# https://radarr.video/
|
||||
radarr:
|
||||
@ -83,6 +105,12 @@ services:
|
||||
ports:
|
||||
- 2004:7878
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Radarr
|
||||
glance.icon: si:radarr
|
||||
glance.url: https://radarr.theocorp
|
||||
glance.description: Movie Management
|
||||
glance.hide: false
|
||||
# Lidarr is used to query, add downloads to the download queue and index Music
|
||||
# https://lidarr.audio/
|
||||
lidarr:
|
||||
@ -98,6 +126,12 @@ services:
|
||||
ports:
|
||||
- 2006:8686
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Lidarr
|
||||
glance.icon: si:lidarr
|
||||
glance.url: https://lidarr.theocorp
|
||||
glance.description: Music Management
|
||||
glance.hide: false
|
||||
# Readarr is used to query, add downloads to the download queue and index Audio and Ebooks
|
||||
# https://readarr.com/
|
||||
readarr:
|
||||
@ -113,6 +147,12 @@ services:
|
||||
ports:
|
||||
- 2007:8787
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Readarr
|
||||
glance.icon: si:readarr
|
||||
glance.url: https://readarr.theocorp
|
||||
glance.description: Book Management
|
||||
glance.hide: false
|
||||
# Bazarr is used to download and categorize subtitles
|
||||
# https://www.bazarr.media/
|
||||
bazarr:
|
||||
@ -128,6 +168,12 @@ services:
|
||||
ports:
|
||||
- 2008:6767
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Bazarr
|
||||
glance.icon: si:bazarr
|
||||
glance.url: https://bazarr.theocorp
|
||||
glance.description: Subtitle Management
|
||||
glance.hide: false
|
||||
# Prowlarr is our torrent indexer/searcher. Sonarr/Radarr use Prowlarr as a source
|
||||
# https://prowlarr.com/
|
||||
prowlarr:
|
||||
@ -142,6 +188,12 @@ services:
|
||||
ports:
|
||||
- 2009:9696
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
glance.name: Prowlarr
|
||||
glance.icon: si:prowlarr
|
||||
glance.url: https://prowlarr.theocorp
|
||||
glance.description: Indexer Management
|
||||
glance.hide: false
|
||||
# Gluetun is our VPN, so you can download torrents safely
|
||||
gluetun:
|
||||
image: qmcgaw/gluetun:v3
|
||||
@ -168,6 +220,12 @@ services:
|
||||
- VPN_PORT_FORWARDING=on
|
||||
restart: unless-stopped
|
||||
network_mode: bridge
|
||||
labels:
|
||||
glance.name: Gluetun
|
||||
glance.icon: si:gluetun
|
||||
glance.url: https://gluetun.theocorp
|
||||
glance.description: VPN Client
|
||||
glance.hide: false
|
||||
# Watchtower is going to keep our instances updated
|
||||
# watchtower:
|
||||
# image: containrrr/watchtower
|
||||
|
||||
Loading…
Reference in New Issue
Block a user