Andrea Cisternino
Andrea Cisternino
@easyw I am sorry, I have tested it only with FC 0.18/Py3. I'll give it a try as soon as possible but I don't think it is compatible. The integer...
Another solution could be using something like this: ```python try: reload # Python 2.7 except NameError: from importlib import reload # Python 3.4+ ``` I'll try to find solutions for...
Apologies, I completely forgot that section of the manual. However, even with those changes the result is still an error. Before providing more details I'd like to note that the...
With `host` set to: ``` host.set("unix:///var/run/docker.sock") ``` I get (abbreviated): ```sh $ ./gradlew clean bootBuildImage > Task :bootBuildImage Building image 'docker.io/library/spring-podman:0.0.1-SNAPSHOT' > Pulling builder image 'docker.io/paketobuildpacks/builder-jammy-base:latest' .................................................. > Pulled builder...
This is interesting. With `host` set to: ```kotlin host.set("unix:///Users/andrea.cisternino/.local/share/containers/podman/machine/podman.sock") ``` I get: ```sh $ ./gradlew clean bootBuildImage > Task :bootBuildImage Building image 'docker.io/library/spring-podman:0.0.1-SNAPSHOT' > Pulling builder image 'docker.io/paketobuildpacks/builder-jammy-base:latest' .................................................. >...
Finally, with `host` set to: ```kotlin host.set("unix:///Users/andrea.cisternino/.local/share/containers/podman/machine/qemu/podman.sock") ``` I get the exact same result as above. For info: ```sh $ ls -l /Users/andrea.cisternino/.local/share/containers/podman/machine/qemu/podman.sock srw------- 1 andrea.cisternino staff 0 Mar 6...
Interesting. @sdeleuze I have checked my environment and I have `podman-mac-helper` installed and running. I went through the [documentation](https://podman-desktop.io/docs/migrating-from-docker/using-podman-mac-helper) and I can confirm that all the steps in the **Verification**...
Hi @scottfrederick, I have tried using `pack` following the instructions in the link above and it worked. This is what I tried from inside the project (named `spring-podman`) directory: ```...