podman now expects localhost/ in name

This commit is contained in:
Robert Hensing 2022-04-08 00:03:45 +02:00
parent 83bc14fba8
commit fbb56568e9

View File

@ -18,6 +18,7 @@
# ];
service.ports = [ "9092:9092" ];
service.depends_on = [ "zookeeper" ];
image.name = "localhost/kafka";
image.contents = [
(pkgs.runCommand "root" { } ''
mkdir -p $out/bin
@ -41,6 +42,7 @@
# # volume.nocopy = true;
# }
# ];
image.name = "localhost/zookeeper";
image.contents = [
(pkgs.buildEnv {
name = "root";