13 lines
419 B
Nix
Raw Normal View History

2024-09-21 16:59:39 +02:00
{lib, ...}: {
virtualisation.oci-containers.containers."echo-http-service" = {
image = "hashicorp/http-echo";
extraOptions = ["-text='Hello, World!'" "--network=web"];
2024-10-17 18:57:52 +02:00
ports = ["5679:5678"];
2024-09-21 16:59:39 +02:00
};
system.activationScripts.createPodmanNetworkWeb = lib.mkAfter ''
if ! /run/current-system/sw/bin/podman network exists web; then
/run/current-system/sw/bin/podman network create web
fi
'';
}