Mealie instance setup

This commit is contained in:
2023-09-09 07:17:48 -05:00
parent 2405b72d1b
commit 254cf0221b
4 changed files with 87 additions and 46 deletions

View File

@ -21,7 +21,7 @@
};
};
# gitlab-runner = a service definition in this file.
# gitlab-runner = a service definition at the bottom of this file.
jellyfin = {
image = "linuxserver/jellyfin";
@ -42,13 +42,30 @@
};
};
mealie = {
image = "hkotel/mealie:omni-nightly";
ports = [ "52230:3000" ];
volumes = [
"/home/sezycei/srv/containerdata/mealie/data:/app/data"
"/home/sezycei/srv/containerdata/mealie/hosts:/etc/hosts"
];
environment = {
ALLOW_SIGNUP = "false";
PGID = "1000";
PUID = "1000";
TZ = "America/Chicago";
BASE_URL = "https://food.eversole.co";
};
extraOptions = [ "--network=slirp4netns:enable_ipv6=false" ];
};
murmur = {
image = "goofball222/murmur";
ports = [ "64738:64738" "64738:64738/udp" ];
volumes = [
"/home/sezycei/srv/containerdata/murmur/murmur/config:/opt/murmur/config"
"/home/sezycei/srv/containerdata/murmur/murmur/data:/opt/murmur/data"
"/home/sezycei/srv/containerdata/murmur/murmur/log:/opt/murmur/log"
"/home/sezycei/srv/containerdata/murmur/murmur/config:/opt/murmur/config"
"/home/sezycei/srv/containerdata/murmur/murmur/data:/opt/murmur/data"
"/home/sezycei/srv/containerdata/murmur/murmur/log:/opt/murmur/log"
];
environment = { };
};

View File

@ -54,7 +54,10 @@
target = "http://127.0.0.1:3001";
};
"eversole.co" = static { dir = "/var/www/jame.su"; };
"git.eversole.co" = base {
"food.eversole.co" = proxied {
target = "http://127.0.0.1:52230";
};
"git.eversole.co" = base {
"/".proxyPass = "http://127.0.0.1:26616";
"/purr".return = "301 https://git.eversole.co/James/purr";
};