21 lines
604 B
Nix
21 lines
604 B
Nix
{...}: {
|
|
virtualisation.oci-containers.containers = {
|
|
memos = {
|
|
# https://www.usememos.com/docs/install/self-hosting
|
|
image = "docker.io/neosmemo/memos:stable";
|
|
environment = {
|
|
# https://github.com/usememos/memos/issues/2433#issuecomment-1797316081
|
|
MEMOS_METRIC = "false";
|
|
};
|
|
ports = [
|
|
# TODO: for some *very* weird reason, exposing the port does not work
|
|
# if we use the same port on the host and inside the container. Why??
|
|
"127.0.0.1:5231:5230"
|
|
];
|
|
volumes = [
|
|
"memos:/var/opt/memos"
|
|
];
|
|
};
|
|
};
|
|
}
|