snowflake/hosts/sakura/services/searxng.nix

15 lines
290 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04:00
_: {
2023-05-28 22:00:50 -04:00
virtualisation.oci-containers.containers.searxng = {
2023-06-13 04:00:00 -04:00
image = "searxng/searxng:2023.6.10-5f11155c";
2023-05-28 22:00:50 -04:00
volumes = [
"/home/notoh/docker/searxng:/etc/searxng:rw"
];
environment = {
INSTANCE_NAME = "SearXNG";
};
ports = [
"8085:8080"
];
};
}