A new start
This commit is contained in:
commit
f4e2368893
93 changed files with 7621 additions and 0 deletions
17
systems/x86_64-linux/mx/kicker.nix
Normal file
17
systems/x86_64-linux/mx/kicker.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
kicker = {
|
||||
image = "quay.io/kicker/kicker:live";
|
||||
ports = [ "127.0.0.1:8087:80" ];
|
||||
volumes = [
|
||||
"/home/hartwin/kicker/.htaccess:/app/public/.htaccess"
|
||||
"/home/hartwin/kicker/.htpasswd:/app/public/.htpasswd"
|
||||
"/home/hartwin/kicker/live.db:/app/db/data/current.db"
|
||||
];
|
||||
extraOptions = [
|
||||
"--pull=always"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue