remove some unwanted containers

This commit is contained in:
♥ Minnie ♥ 2023-05-21 17:36:30 +08:00
parent 170e12223e
commit bc021761dc
3 changed files with 0 additions and 43 deletions

View file

@ -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" ];
};
}

View file

@ -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"
];
};
}

View file

@ -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" ];
};
}