8 lines
227 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ ... }: {
2023-04-08 18:17:14 +03:00
virtualisation.oci-containers.containers.it-tools = {
autoStart = true;
image = "docker.io/corentinth/it-tools:latest";
extraOptions = [ "--pull=newer" ];
ports = [ "127.0.0.1:8070:80/tcp" ];
};
}