You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/hydro.nix

30 lines
614 B
Nix

{ pkgs ? import <nixpkgs> { system = "x86_64-linux"; } }:
pkgs.dockerTools.buildImage {
name = "hydrooj/web";
tag = "latest";
contents = [
pkgs.mongodb-4_2
pkgs.minio
pkgs.nodejs
pkgs.yarn
];
runAsRoot = ''
#!${pkgs.runtimeShell}
mkdir -p /data/db
yarn global add pm2 hydrooj @hydrooj/ui-default @hydrooj/hydrojudge
hydrooj addon add @hydrooj/hydrojudge
hydrooj addon add @hydrooj/ui-default
'';
config = {
WorkingDir = "/data";
Volumes = { "/data" = { }; };
ExposedPorts = {
"8888" = { };
};
Entrypoint = [ "/entrypoint.sh" ];
};
}