0

There is both a buildah commit and a podman commit however the buildah commit doesn't support --author or --message which is provided by podman. Is there a way to get this functionality with just buildah? Or do I need to take a container online with the image merely to set the author and message?

Evan Carroll
  • 28,578
  • 45
  • 164
  • 290

2 Answers2

1

You can set an image’s author with buildah config --author.

As far as I can tell there’s no buildah equivalent to podman commit --message.

Stephen Kitt
  • 411,918
  • 54
  • 1,065
  • 1,164
1

buildah config --comment is the equivalent of podman commit --message.

Evan Carroll
  • 28,578
  • 45
  • 164
  • 290
rhatdan
  • 271
  • 1
  • 3