22 lines
466 B
Nix
22 lines
466 B
Nix
_:
|
|
{
|
|
virtualisation.oci-containers.containers = {
|
|
# qbittorrent
|
|
qbittorrent = {
|
|
autoStart = true;
|
|
image = "qbittorrentofficial/qbittorrent-nox:latest";
|
|
networks = [
|
|
"container:pvpn-de-01"
|
|
];
|
|
environment = {
|
|
WEBUI_PORT = "8080";
|
|
TZ="Europe/Berlin";
|
|
};
|
|
volumes = [
|
|
"/srv/docker/qbittorrent/config:/config"
|
|
"/srv/docker/qbittorrent/downloads:/downloads"
|
|
];
|
|
};
|
|
};
|
|
}
|