inital commit

This commit is contained in:
2022-10-30 14:01:10 -05:00
commit 9506f24bcc
30 changed files with 769 additions and 0 deletions

16
static/docker/deluge.yaml Normal file
View File

@@ -0,0 +1,16 @@
---
version: "2.1"
services:
deluge:
image: lscr.io/linuxserver/deluge:latest
container_name: deluge
environment:
- PUID=1000
- PGID=1000
- DELUGE_LOGLEVEL=error #optional
volumes:
- /infra/deluge/config:/config
- /infra/downloads:/downloads
ports:
- 8001:8112
restart: unless-stopped

14
static/docker/homer.yaml Normal file
View File

@@ -0,0 +1,14 @@
---
version: "2"
services:
homer:
image: b4bz/homer:latest
container_name: homer
volumes:
- /infra/homer:/www/assets
ports:
- 8000:8080
user: 1000:1000 # default
environment:
- INIT_ASSETS=1 # default
restart: unless-stopped

View File

@@ -0,0 +1,16 @@
---
version: "2.1"
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- AUTO_UPDATE=true #optional
volumes:
- /infra/jackett/config:/config
- /infra/downloads:/downloads
ports:
- 8005:9117
restart: unless-stopped

View File

@@ -0,0 +1,16 @@
---
version: "2.1"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
volumes:
- /infra/jellyfin/config:/config
- /infra/downloads/tvshows:/data/tvshows
- /infra/downloads/movies:/data/movies
ports:
- 8006:8096
restart: unless-stopped

View File

@@ -0,0 +1,13 @@
---
version: "3.3"
services:
openbooks:
image: evanbuss/openbooks:latest
container_name: openbooks
volumes:
- /infra/downloads/books:/books
ports:
- 8004:80
environment:
- BASE_PATH=/openbooks/
restart: unless-stopped

14
static/docker/radarr.yaml Normal file
View File

@@ -0,0 +1,14 @@
---
version: "2.1"
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=1000
volumes:
- /infra/radarr:/config
- /infra/downloads:/downloads #optional
network_mode: host
restart: unless-stopped

14
static/docker/sonarr.yaml Normal file
View File

@@ -0,0 +1,14 @@
---
version: "2.1"
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
volumes:
- /infra/sonarr:/config
- /infra/downloads:/downloads #optional
network_mode: host
restart: unless-stopped