Files
booklore/example-podman

Podman Example

This directory contains an example of how to use a rootless Podman pod defined through Quadlets to run booklore.

Setup

  1. Copy the files in this directory to a suitable location on your system.
  • For many systems Quadlet monitors ~/.config/containers/systemd
    • mkdir -p ~/.config/containers/systemd && cp ./*lore* ~/.config/containers/systemd/
  1. Edit the booklore.container to set the correct mounts for bookdrop and your library
  2. Create the Podman Secrets for the database
    echo -n "YOUR PASSWORD" | podman secret create booklore_db_pass -
    
  3. (Optional) podman pull ghcr.io/booklore-app/booklore:latest to pre-pull the image
  • If you have a slow connection, this is recommended because systemd will time out if the image pull takes too long.
  1. Run systemctl --user daemon-reload to pick up the new Quadlet unit.
  2. Start the pod with systemctl --user start booklore-pod.service

Autoupdates

If automatic updates are desired, enable the systemd timer:

systemctl --user enable podman-auto-update.timer

This is a native way to schedule podman auto-update to run periodically and update/restart containers with AutoUpdate enabled in their Quadlet files.

Verification Commands

  • systemctl --user status booklore-pod -l - Check the status of the pod
  • systemctl --user status booklore-db -l - Check the status of the database
  • systemctl --user status booklore -l - Check the status of the booklore container

Further Reading