Hi Markus! I have been wanting to try these examples that use Podman/Docker. I went with Podman but had trouble getting it configured locally, on Ubuntu Linux.
So I looked around, trial and error, and here are 3 commands that worked for me to get 'mvn quarkus:dev' to succeed without errors:
>>>
systemctl --user enable podman.socket --now
export DOCKER_HOST=unix://$(podman info --format '{{.Host.RemoteSocket.Path}}')
export TESTCONTAINERS_RYUK_DISABLED=true
<<<
Now I can try all the Podman examples that I skipped. Thanks for the great examples!
Hi Markus! I have been wanting to try these examples that use Podman/Docker. I went with Podman but had trouble getting it configured locally, on Ubuntu Linux.
So I looked around, trial and error, and here are 3 commands that worked for me to get 'mvn quarkus:dev' to succeed without errors:
>>>
systemctl --user enable podman.socket --now
export DOCKER_HOST=unix://$(podman info --format '{{.Host.RemoteSocket.Path}}')
export TESTCONTAINERS_RYUK_DISABLED=true
<<<
Now I can try all the Podman examples that I skipped. Thanks for the great examples!
Thanks for sharing 🙏