arion/examples/minimal/arion-compose.nix
Robert Hensing 24503bcbe5 Fix warnings
2019-10-29 11:04:25 +01:00

17 lines
409 B
Nix

{ pkgs, ... }:
{
config.services = {
webserver = {
service.useHostStore = true;
service.command = [ "sh" "-c" ''
cd "$$WEB_ROOT"
${pkgs.python3}/bin/python -m http.server
'' ];
service.ports = [
"8000:8000" # host:container
];
service.environment.WEB_ROOT = "${pkgs.nix.doc}/share/doc/nix/manual";
};
};
}