starryoccultist@lemmy.sdf.orgtopolitics @lemmy.world•Left Politicians Are Showing How to Respond to the Horrors in Israel and PalestineEnglish
61·
1 year agoIsraeli politics are dominated by right-wing hardliners who need constant conflict with the Palestinians for their own political survival. Netanyahu himself has constructed his entire political identity around being the only person who can be trusted with Israel’s security. As long as this is the case, what the Israeli population wants or doesn’t want is immaterial
I’m also currently migrating all of my self-hosted services from docker to podman. Look into using Quadlet and systemd rather than podman-compose: https://www.redhat.com/sysadmin/quadlet-podman
Your Quadlet
.container
files will end up looking very similar to your docker compose files. Podman will automatically generate a systemd service unit for you if you drop the.container
file in your user systemd unit directory ($HOME/.config/containers/systemd/) and runsystemctl --user daemon-reload
. Then starting the container on boot is as simple assystemctl --user enable --now containername.service
.This will not solve your rootful vs. rootless issues, as others have pointed out, but Quadlet/systemd is nice replacement for the service/container management layer instead of docker-compose/podman-compose