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, ...}: {
|
{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"
|
||||||
];
|
];
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
];
|
];
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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/";
|
||||||
|
|
Loading…
Reference in a new issue