add linkding
This commit is contained in:
parent
9cbb9b348b
commit
6a641c81d5
4 changed files with 49 additions and 4 deletions
|
|
@ -228,12 +228,12 @@ in
|
|||
# qBittorrent torrent client with host networking
|
||||
qbittorrent = {
|
||||
image = "docker.io/linuxserver/qbittorrent:4.6.7";
|
||||
|
||||
|
||||
volumes = [
|
||||
"/var/lib/containers/config/qbittorrent:/config"
|
||||
"/mnt/storage/Media:/data"
|
||||
];
|
||||
|
||||
|
||||
environment = {
|
||||
PUID = commonUID;
|
||||
PGID = commonGID;
|
||||
|
|
@ -241,11 +241,30 @@ in
|
|||
TORRENTING_PORT = "41234";
|
||||
WEBUI_PORT = "8080";
|
||||
};
|
||||
|
||||
|
||||
extraOptions = [
|
||||
"--network=host"
|
||||
];
|
||||
|
||||
|
||||
autoStart = true;
|
||||
};
|
||||
|
||||
# Linkding bookmark manager
|
||||
linkding = {
|
||||
image = "docker.io/sissbruecker/linkding:latest-plus";
|
||||
|
||||
volumes = [
|
||||
"/var/lib/containers/config/linkding:/etc/linkding/data"
|
||||
];
|
||||
|
||||
ports = [
|
||||
"5009:9090"
|
||||
];
|
||||
|
||||
extraOptions = [
|
||||
"--network=podman"
|
||||
];
|
||||
|
||||
autoStart = true;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -90,6 +90,18 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Linkding bookmark manager
|
||||
link = {
|
||||
rule = "Host(`link.yanlincs.com`)";
|
||||
service = "link";
|
||||
tls = {
|
||||
certResolver = "cloudflare";
|
||||
domains = [{
|
||||
main = "*.yanlincs.com";
|
||||
}];
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
@ -157,6 +169,15 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Linkding backend (via WireGuard)
|
||||
link = {
|
||||
loadBalancer = {
|
||||
servers = [{
|
||||
url = "http://10.2.2.20:5009";
|
||||
}];
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue