arion/examples/minimal/arion-compose.nix

21 lines
513 B
Nix
Raw Normal View History

2018-12-18 16:53:37 +03:00
{ pkgs, ... }:
{
project.name = "webapp";
services = {
2018-12-18 16:53:37 +03:00
webserver = {
image.enableRecommendedContents = true;
2018-12-18 16:53:37 +03:00
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";
2020-10-02 12:39:38 +03:00
service.stop_signal = "SIGINT";
2018-12-18 16:53:37 +03:00
};
};
}