I have to say, I am wondering if tumbleweed has the capability to run Podman Quadlets.
I have tried everything to get one going. I was frustrated so much one time I just turned off my computer and went to bead. The next day I had one running…Have no clue how I get it to run.
Any tutorials to get it running. I read tonight that I should install “sudo zypper install podman-quadlet” that does not exist.
am I missing something? I have just installed podman with (sudo zypper install podman)
what I have done is, created ~/.config/containers/systemd/gethomepage.container
# gethomepage.container
[Unit]
Description=Homepage dashboard (gethomepage.dev)
After=network-online.target
[Container]
# Image & basic identity
Image=ghcr.io/gethomepage/homepage:latest
ContainerName=homepage
# Port: host:container (change host port if you need)
PublishPort=3000:3000
# Mount your config and icons
# Put your YAMLs in /mnt/storage/podman/homepage/config
# Optional icons in /mnt/storage/podman/homepage/icons
Volume=/mnt/storage/podman/homepage/config:/app/config
Volume=/mnt/storage/podman/homepage/icons:/app/public/icons
# OPTIONAL: show container stats/services by mounting Podman’s Docker-compatible socket
# For ROOTLESS user units, %t expands to /run/user/<uid>
Volume=%t/podman/podman.sock:/var/run/docker.sock
Environment=DOCKER_HOST=unix:///var/run/docker.sock
# Set your local timezone (optional)
Environment=TZ=America/Los_Angeles
# Auto-update from registry (Podman auto-update)
AutoUpdate=registry
# (Equivalent label, harmless if left in)
Label=io.containers.autoupdate=registry
# Restart policy
[Service]
Restart=always
[Install]
# For user units
WantedBy=default.target
loginctl enable-linger “$USER”
run:
systemctl --user daemon-reload
systemctl --user enable --now gethomepage.container
and I receive:
Failed to enable unit: Unit gethomepage.container.service does not exist
running: systemctl --user list-unit-files | grep -F gethomepage.container
shows nothing.
Everything that I have tried says install podman-quadlet! Does Tumbleweed not have this?
Thanks -