Change docker name to qbittorrent-vpn
Some checks are pending
/ Build Nix targets (push) Waiting to run
Some checks are pending
/ Build Nix targets (push) Waiting to run
This commit is contained in:
parent
cdbdfb278d
commit
c6036bb3a7
5 changed files with 8 additions and 91 deletions
|
@ -4,14 +4,10 @@
|
|||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.services.vm_docker;
|
||||
cfg = config.services.vm_qbittorrent_vpn;
|
||||
in {
|
||||
options.services.vm_docker = {
|
||||
options.services.vm_qbittorrent_vpn = {
|
||||
enable = lib.mkEnableOption "Enable minimal config";
|
||||
pgsql_ip = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
description = "docker database IP address";
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
age.secrets = {
|
||||
|
@ -126,85 +122,6 @@ in {
|
|||
log-driver = "journald";
|
||||
extraOptions = ["--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";
|
||||
};
|
||||
"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";
|
||||
};
|
||||
"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 = ["--dns=192.168.1.90"];
|
||||
};
|
||||
"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";
|
||||
};
|
||||
"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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue