How to autostart #podman containers?

https://linuxhandbook.com/autostart-podman-containers/

~$ podman generate systemd my_container > ~/.config/systemd/user/podman-my-container.service
~$ systemctl --user daemon-reload
~$ systemctl --user enable podman-my-container.service
Created symlink

How to Autostart Podman Containers?

Podman is awesome but it doesn't autostart containers after system reboots. Here's how to fix that.

Linux Handbook