podman now expects localhost/ in name
This commit is contained in:
parent
83bc14fba8
commit
fbb56568e9
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
# ];
|
# ];
|
||||||
service.ports = [ "9092:9092" ];
|
service.ports = [ "9092:9092" ];
|
||||||
service.depends_on = [ "zookeeper" ];
|
service.depends_on = [ "zookeeper" ];
|
||||||
|
image.name = "localhost/kafka";
|
||||||
image.contents = [
|
image.contents = [
|
||||||
(pkgs.runCommand "root" { } ''
|
(pkgs.runCommand "root" { } ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
@ -41,6 +42,7 @@
|
||||||
# # volume.nocopy = true;
|
# # volume.nocopy = true;
|
||||||
# }
|
# }
|
||||||
# ];
|
# ];
|
||||||
|
image.name = "localhost/zookeeper";
|
||||||
image.contents = [
|
image.contents = [
|
||||||
(pkgs.buildEnv {
|
(pkgs.buildEnv {
|
||||||
name = "root";
|
name = "root";
|
||||||
|
|
Loading…
Reference in a new issue