mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
17 lines
342 B
Nix
17 lines
342 B
Nix
{config, ...}:
|
|
{
|
|
virtualisation.oci-containers = {
|
|
backend = "docker";
|
|
containers = {
|
|
fourget = {
|
|
image = "luuul/4get:latest";
|
|
environment = {
|
|
"FOURGET_PROTO" = "http";
|
|
"FOURGET_SERVER_NAME" = "192.168.1.177:6942";
|
|
};
|
|
ports = ["6942:80"];
|
|
};
|
|
};
|
|
};
|
|
}
|