SECTION 1 – BACKGROUND This document comes from my many attempts to make this work with podman-compose setup. I got it working and hope to document those details at a later date. I had to give up on that because when I exited the ssh session it would kill the server. I found this reddit post which made me conclude…
Tag: podman
HOW TO CLEAR MAUTIC CACHE IN PODMAN
I had a challenge with my mautic landing pages when I did a fresh install using Podman. Part of the process that I thought was both useful and educational and worth leaving as a permanent post was how to clear the Mautic cache, especially using podman This mautic documentation page indicated that it may be required to a) clear the…
How to Wipe Out a Podman Container with Podman-compose Setup
Its kind of a tricky post I’m making here because actually there is no difference between how you remove the containers whether it was created with podman-compose or otherwise. However, it took me a long time to figure that out and get the quick and simple answer so here is a blog to cut to the chase. If you created…
How to get a Podman Container IP address with less errors
(Edited Solution Dec 13, 2024) (Second edit of Solution Dec 28 2024) Background I was trying to get the IP address of one of my podman containers. I was using this command over and over with much pain (and no gain): podman inspect -f ‘{{ .NetworkSettings.IPAddress }}’ <container-name> Journey to the Solution Finally, after much frustration, I resorted to AI…