8 lines
246 B
Nix
Raw Normal View History

2023-04-08 18:17:14 +03:00
{ config, lib, pkgs, ... }: {
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" ];
};
}