Add arr-box to docker VM
This commit is contained in:
parent
a34a18d5ad
commit
44ee220627
1 changed files with 99 additions and 1 deletions
|
@ -99,7 +99,7 @@ in {
|
||||||
"WEBUI_PORT" = "8080";
|
"WEBUI_PORT" = "8080";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
"/mnt/DATA/:/downloads:rw"
|
"/mnt/media/:/downloads:rw"
|
||||||
"/home/tbarnouin/gluetun/qbittorrent/webui:/webui:rw"
|
"/home/tbarnouin/gluetun/qbittorrent/webui:/webui:rw"
|
||||||
"gluetun_qbittorrent-config:/config:rw"
|
"gluetun_qbittorrent-config:/config:rw"
|
||||||
];
|
];
|
||||||
|
@ -111,6 +111,104 @@ in {
|
||||||
"--network=container:gluetun"
|
"--network=container:gluetun"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"bazarr" = {
|
||||||
|
image = "linuxserver/bazarr";
|
||||||
|
environment = {
|
||||||
|
"PGID" = "1000";
|
||||||
|
"PUID" = "1000";
|
||||||
|
"TZ" = "\"Europe/Paris\"";
|
||||||
|
};
|
||||||
|
volumes = [
|
||||||
|
"/home/tbarnouin/bazarr:/config:rw"
|
||||||
|
"/mnt/media:/downloads:rw"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"6767:6767/tcp"
|
||||||
|
];
|
||||||
|
log-driver = "journald";
|
||||||
|
extraOptions = [
|
||||||
|
"--network-alias=bazarr"
|
||||||
|
"--network=arr-box_default"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"jellyseerr" = {
|
||||||
|
image = "fallenbagel/jellyseerr:latest";
|
||||||
|
environment = {
|
||||||
|
"LOG_LEVEL" = "debug";
|
||||||
|
"TZ" = "\"Europe/Paris\"";
|
||||||
|
};
|
||||||
|
volumes = [
|
||||||
|
"/home/tbarnouin/jellyseerr:/app/config:rw"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"5055:5055/tcp"
|
||||||
|
];
|
||||||
|
log-driver = "journald";
|
||||||
|
extraOptions = [
|
||||||
|
"--network-alias=jellyseerr"
|
||||||
|
"--network=arr-box_default"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"prowlarr" = {
|
||||||
|
image = "lscr.io/linuxserver/prowlarr:latest";
|
||||||
|
environment = {
|
||||||
|
"PGID" = "1000";
|
||||||
|
"PUID" = "1000";
|
||||||
|
"TZ" = "\"Europe/Paris\"";
|
||||||
|
};
|
||||||
|
volumes = [
|
||||||
|
"/home/tbarnouin/prowlarr:/config:rw"
|
||||||
|
"/mnt/media:/downloads:rw"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"9696:9696/tcp"
|
||||||
|
];
|
||||||
|
log-driver = "journald";
|
||||||
|
extraOptions = [
|
||||||
|
"--network-alias=prowlarr"
|
||||||
|
"--network=arr-box_default"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"radarr" = {
|
||||||
|
image = "lscr.io/linuxserver/radarr:latest";
|
||||||
|
environment = {
|
||||||
|
"PGID" = "1000";
|
||||||
|
"PUID" = "1000";
|
||||||
|
"TZ" = "\"Europe/Paris\"";
|
||||||
|
};
|
||||||
|
volumes = [
|
||||||
|
"/home/tbarnouin/radarr:/config:rw"
|
||||||
|
"/mnt/media:/downloads:rw"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"7878:7878/tcp"
|
||||||
|
];
|
||||||
|
log-driver = "journald";
|
||||||
|
extraOptions = [
|
||||||
|
"--network-alias=radarr"
|
||||||
|
"--network=arr-box_default"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"sonarr" = {
|
||||||
|
image = "lscr.io/linuxserver/sonarr:latest";
|
||||||
|
environment = {
|
||||||
|
"PGID" = "1000";
|
||||||
|
"PUID" = "1000";
|
||||||
|
"TZ" = "\"Europe/Paris\"";
|
||||||
|
};
|
||||||
|
volumes = [
|
||||||
|
"/home/tbarnouin/sonarr:/config:rw"
|
||||||
|
"/mnt/media:/downloads:rw"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"8989:8989/tcp"
|
||||||
|
];
|
||||||
|
log-driver = "journald";
|
||||||
|
extraOptions = [
|
||||||
|
"--network-alias=sonarr"
|
||||||
|
"--network=arr-box_default"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
crowdsec = {
|
crowdsec = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue