14 lines
251 B
Nix
14 lines
251 B
Nix
{
|
|
virtualisation.oci-containers.containers = {
|
|
warpgate = {
|
|
image = "ghcr.io/warp-tech/warpgate";
|
|
ports = [
|
|
"2222:2222"
|
|
"8888:8888"
|
|
];
|
|
volumes = [
|
|
"/srv/warpgate/data:/data"
|
|
];
|
|
};
|
|
};
|
|
}
|