Add serviceName option to documentation

This commit is contained in:
Ciaran De Groot 2023-12-17 12:46:15 -07:00
parent 91e67df844
commit 49bc39d860

View file

@ -53,12 +53,15 @@ NOTE: This deployment method does NOT use an `arion-pkgs.nix` file, but reuses
virtualisation.arion = { virtualisation.arion = {
backend = "podman-socket"; # or "docker" backend = "podman-socket"; # or "docker"
projects.example.settings = { projects.example = {
serviceName = "example"; # optional systemd service name, defaults to arion-example in this case
settings = {
# Specify you project here, or import it from a file. # Specify you project here, or import it from a file.
# NOTE: This does NOT use ./arion-pkgs.nix, but defaults to NixOS' pkgs. # NOTE: This does NOT use ./arion-pkgs.nix, but defaults to NixOS' pkgs.
imports = [ ./arion-compose.nix ]; imports = [ ./arion-compose.nix ];
}; };
}; };
};
} }
``` ```