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