summaryrefslogtreecommitdiff
path: root/modules/server/virtualisation/containers/wastebin.nix
blob: 574e0d0ff81963b2bcfcde7e8f16678ad0d614a6 (plain) (blame)
1
2
3
4
5
6
7
8
{
  virtualisation.oci-containers.containers.bin = {
    image = "quxfoo/wastebin";
    autoStart = true;
    ports = [ "8090:8088" ];
    volumes = [ "/mnt/docker/bin:/root/db" ];
  };
}