services: remove ports
This commit is contained in:
parent
a026229611
commit
9bad9cff58
5 changed files with 2 additions and 8 deletions
|
@ -1,7 +1,6 @@
|
|||
{config, ...}: {
|
||||
virtualisation.oci-containers.containers.foundryvtt = {
|
||||
image = "felddy/foundryvtt:release";
|
||||
ports = ["30000:30000"];
|
||||
volumes = [
|
||||
"/home/notoh/docker/foundryvtt:/data"
|
||||
];
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
virtualisation.oci-containers.containers.homepage = {
|
||||
ports = ["3000:3000"];
|
||||
image = "ghcr.io/benphelps/homepage";
|
||||
volumes = [
|
||||
"/home/notoh/docker/homepage:/app/config"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
environment.systemPackages = with pkgs; [hugo];
|
||||
virtualisation.oci-containers.containers.hugo = {
|
||||
image = "klakegg/hugo:0.101.0";
|
||||
cmd = ["server" "sh"];
|
||||
cmd = ["server"];
|
||||
volumes = [
|
||||
"/home/notoh/docker/hugo:/src"
|
||||
];
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
{...}: {
|
||||
virtualisation.oci-containers.containers.searxng = {
|
||||
image = "searxng/searxng";
|
||||
ports = ["8085:8080"];
|
||||
volumes = [
|
||||
"/home/notoh/docker/searxng:/etc/searxng:rw"
|
||||
];
|
||||
environment = {
|
||||
INSTANCE_NAME = "test_instance";
|
||||
INSTANCE_NAME = "SearXNG";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
{...}: {
|
||||
virtualisation.oci-containers.containers.stash = {
|
||||
image = "stashapp/stash";
|
||||
ports = [
|
||||
"9999:9999"
|
||||
];
|
||||
environment = {
|
||||
STASH_STASH = "/data/";
|
||||
STASH_GENERATED = "/generated/";
|
||||
|
|
Loading…
Reference in a new issue