remove some unwanted containers
This commit is contained in:
parent
170e12223e
commit
bc021761dc
|
@ -1,13 +0,0 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Code server
|
||||
virtualisation.oci-containers.containers."code-server" = {
|
||||
autoStart = true;
|
||||
image = "lscr.io/linuxserver/code-server:latest";
|
||||
volumes = [
|
||||
"/srv/containers/code-server:/config"
|
||||
];
|
||||
ports = [ "8443:8443" ];
|
||||
};
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Gitea
|
||||
virtualisation.oci-containers.containers."gitea" = {
|
||||
autoStart = true;
|
||||
image = "gitea/gitea:latest";
|
||||
volumes = [
|
||||
"/srv/containers/gitea:/data"
|
||||
"/etc/localtime:/etc/localtime:ro"
|
||||
];
|
||||
ports = [
|
||||
"4000:3000"
|
||||
"2221:22"
|
||||
];
|
||||
};
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Overseerr
|
||||
virtualisation.oci-containers.containers."overseerr" = {
|
||||
autoStart = true;
|
||||
image = "sctx/overseerr:latest";
|
||||
volumes = [
|
||||
"/srv/containers/overseerr:/app/config"
|
||||
];
|
||||
ports = [ "5055:5055" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue