nix-config/hosts/franz/arion/volman/arion-compose.nix
2024-03-07 16:46:49 +01:00

16 lines
272 B
Nix

{pkgs, ...}: {
project.name = "volman";
docker-compose.volumes = {};
services = {
volman.service = {
image = "ubuntu";
container_name = "volman";
useHostStore = true;
command = "sleep infinity";
volumes = [
];
};
};
}