With docker-compose, containers would start on boot. It was maybe because I had restart: always on.

Is there a way something similar with podman-compose?

I see mentions of creating custom systemd scripts to run podman-compose to start containers, but is there something already baked in podman-compose that I can use?

    • dudesss@lemmy.caOP
      link
      fedilink
      arrow-up
      1
      ·
      3 days ago

      I implemented these, but my containers are not starting on system boot. I even set restart: always

      • hosaka@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        2 days ago

        Might be obvious but did you enable the Quadlets? So systemctl enable quadlet.service or whatever the equivalent is. I think the quadlet is just a regular systemd unit.

        Edit: I noticed you already got an answer!

        • dudesss@lemmy.caOP
          link
          fedilink
          arrow-up
          1
          ·
          2 days ago

          No need to enable, it won’t work nor do anything. Do need to systemctl --user daemon-reload

  • lambalicious@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    4
    ·
    11 days ago

    Not something baked-in, no, since the entire point of podman is that it’s server- (service-)less.

    However they do have a command to manually launch the respective user’s podman manager, which IIRC is podman system service -t0 (note: runs in the foreground) so if you add that to a service entry (eg.: via runit user units or systemd user scopes) or just launch it via your user crontab’s @reboot, it should work without issues.

    This is literally my runit user unit for podman:

    #!/bin/sh
    export XDG_RUNTIME_DIR=/run/user/1000
    exec podman system service -t0