inital commit
This commit is contained in:
16
static/docker/deluge.yaml
Normal file
16
static/docker/deluge.yaml
Normal 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
14
static/docker/homer.yaml
Normal 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
|
||||
16
static/docker/jackett.yaml
Normal file
16
static/docker/jackett.yaml
Normal 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
|
||||
16
static/docker/jellyfin.yaml
Normal file
16
static/docker/jellyfin.yaml
Normal 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
|
||||
13
static/docker/openbooks.yaml
Normal file
13
static/docker/openbooks.yaml
Normal 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
14
static/docker/radarr.yaml
Normal 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
14
static/docker/sonarr.yaml
Normal 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
|
||||
Reference in New Issue
Block a user