ADD appsmith docker service
This commit is contained in:
parent
393efdc189
commit
7385ec4edb
|
@ -0,0 +1,20 @@
|
|||
{ 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
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
host = "atlanticaweb.fr";
|
||||
host = "search.atlanticaweb.fr";
|
||||
in
|
||||
{
|
||||
virtualisation = {
|
||||
|
@ -8,12 +8,12 @@ in
|
|||
enable = true;
|
||||
dockerCompat = true;
|
||||
};
|
||||
whoogle = {
|
||||
oci-containers = {
|
||||
backend = "podman";
|
||||
containers.whoogle-search = {
|
||||
image = "benbusby/whoogle-search";
|
||||
autoStart = true;
|
||||
ports = [ "5000:5000" ]; #server locahost : docker localhost
|
||||
ports = [ "5001:5000" ]; #server locahost : docker localhost
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
../modules/prometheus-node.nix
|
||||
../modules/common.nix
|
||||
../modules/users.nix
|
||||
../docker/whoogle.nix
|
||||
../docker/appsmith.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "21.11";
|
||||
|
|
Loading…
Reference in New Issue