services: remove ports

This commit is contained in:
notohh 2023-05-14 09:57:06 -04:00
parent a026229611
commit 9bad9cff58
Signed by: notohh
GPG key ID: BD47506D475EE86D
5 changed files with 2 additions and 8 deletions

View file

@ -1,7 +1,6 @@
{config, ...}: { {config, ...}: {
virtualisation.oci-containers.containers.foundryvtt = { virtualisation.oci-containers.containers.foundryvtt = {
image = "felddy/foundryvtt:release"; image = "felddy/foundryvtt:release";
ports = ["30000:30000"];
volumes = [ volumes = [
"/home/notoh/docker/foundryvtt:/data" "/home/notoh/docker/foundryvtt:/data"
]; ];

View file

@ -1,6 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
virtualisation.oci-containers.containers.homepage = { virtualisation.oci-containers.containers.homepage = {
ports = ["3000:3000"];
image = "ghcr.io/benphelps/homepage"; image = "ghcr.io/benphelps/homepage";
volumes = [ volumes = [
"/home/notoh/docker/homepage:/app/config" "/home/notoh/docker/homepage:/app/config"

View file

@ -2,7 +2,7 @@
environment.systemPackages = with pkgs; [hugo]; environment.systemPackages = with pkgs; [hugo];
virtualisation.oci-containers.containers.hugo = { virtualisation.oci-containers.containers.hugo = {
image = "klakegg/hugo:0.101.0"; image = "klakegg/hugo:0.101.0";
cmd = ["server" "sh"]; cmd = ["server"];
volumes = [ volumes = [
"/home/notoh/docker/hugo:/src" "/home/notoh/docker/hugo:/src"
]; ];

View file

@ -1,12 +1,11 @@
{...}: { {...}: {
virtualisation.oci-containers.containers.searxng = { virtualisation.oci-containers.containers.searxng = {
image = "searxng/searxng"; image = "searxng/searxng";
ports = ["8085:8080"];
volumes = [ volumes = [
"/home/notoh/docker/searxng:/etc/searxng:rw" "/home/notoh/docker/searxng:/etc/searxng:rw"
]; ];
environment = { environment = {
INSTANCE_NAME = "test_instance"; INSTANCE_NAME = "SearXNG";
}; };
}; };
} }

View file

@ -1,9 +1,6 @@
{...}: { {...}: {
virtualisation.oci-containers.containers.stash = { virtualisation.oci-containers.containers.stash = {
image = "stashapp/stash"; image = "stashapp/stash";
ports = [
"9999:9999"
];
environment = { environment = {
STASH_STASH = "/data/"; STASH_STASH = "/data/";
STASH_GENERATED = "/generated/"; STASH_GENERATED = "/generated/";