Server & Podman
Some checks failed
Nix Build / build-nixos (push) Failing after 32s

This commit is contained in:
soraefir
2024-04-15 18:34:14 +02:00
parent 6ba720623b
commit 448fe0c18b
7 changed files with 74 additions and 83 deletions

View File

@ -0,0 +1,25 @@
{ pkgs, ... }:{
project.name = "NEW";
networks = {
internal = {
internal = true;
external = false;
};
external = { external = true; };
};
services = {
NAME.service = {
image = "NAME:latest";
container_name = "NAME";
restart = "unless-stopped";
networks = [ "internal" ];
volumes = [ ];
environment = { };
labels = { "traefik.enable" = "false"; };
};
};
}