nix-config/hosts/franz/arion/volman/arion-compose.nix

17 lines
272 B
Nix
Raw Normal View History

2024-03-07 16:46:49 +01:00
{pkgs, ...}: {
project.name = "volman";
docker-compose.volumes = {};
services = {
volman.service = {
image = "ubuntu";
container_name = "volman";
useHostStore = true;
command = "sleep infinity";
volumes = [
];
};
};
}