21 lines
390 B
Nix
21 lines
390 B
Nix
|
{ config, pkgs, ... }:
|
||
|
let
|
||
|
host = "atlanticaweb.fr";
|
||
|
in
|
||
|
{
|
||
|
virtualisation = {
|
||
|
podman = {
|
||
|
enable = true;
|
||
|
dockerCompat = true;
|
||
|
};
|
||
|
whoogle = {
|
||
|
backend = "podman";
|
||
|
containers.whoogle-search = {
|
||
|
image = "benbusby/whoogle-search";
|
||
|
autoStart = true;
|
||
|
ports = [ "5000:5000" ]; #server locahost : docker localhost
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|