v0.14 broken on podman?

the latest update broke and i can't figure out how to fix it. i have tried: podman system reset for clean install but doesn't work. running as root podman on my lxc debian server. any tips?
Solution:
This issue should be fixed with release v0.14.1 ! If not, please open up a ticket in #💬・get-help
GitHub
Release v0.14.1 Stability improvement and bug fixes · ajnart/homarr
Your issues should be resolved! During the last release, we didn't spend enough time to test on different hardware configurations to ensure that v0.14.0 would work on the majority of people'...
Jump to solution
5 Replies
ExoticBerry
ExoticBerry7mo ago
logs
No description
ExoticBerry
ExoticBerry7mo ago
my service file running as root:
[Unit]
Description=Podman container-hm.service
Documentation=man:podman-generate-systemd(1)
Wants=network-online.target
After=network-online.target
StartLimitIntervalSec=400
StartLimitBurst=3
RequiresMountsFor=%t/containers

[Service]
Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure
RestartSec=90
TimeoutStopSec=70
ExecStartPre=/bin/rm \
-f %t/%n.ctr-id
ExecStart=/usr/bin/podman run \
--cidfile=%t/%n.ctr-id \
--cgroups=no-conmon \
--rm \
--sdnotify=conmon \
--replace \
-d \
--name hm \
--label io.containers.autoupdate=registry \
-p 100.77.179.89:7575:7575 \
-v /root/hm/data:/data \
-v /root/hm/configs:/app/data/configs \
-v /root/hm/icons:/app/public/icons ghcr.io/ajnart/homarr:latest
ExecStop=/usr/bin/podman stop \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id
ExecStopPost=/usr/bin/podman rm \
-f \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id
Type=notify
NotifyAccess=all
[Install]
WantedBy=default.target
[Unit]
Description=Podman container-hm.service
Documentation=man:podman-generate-systemd(1)
Wants=network-online.target
After=network-online.target
StartLimitIntervalSec=400
StartLimitBurst=3
RequiresMountsFor=%t/containers

[Service]
Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure
RestartSec=90
TimeoutStopSec=70
ExecStartPre=/bin/rm \
-f %t/%n.ctr-id
ExecStart=/usr/bin/podman run \
--cidfile=%t/%n.ctr-id \
--cgroups=no-conmon \
--rm \
--sdnotify=conmon \
--replace \
-d \
--name hm \
--label io.containers.autoupdate=registry \
-p 100.77.179.89:7575:7575 \
-v /root/hm/data:/data \
-v /root/hm/configs:/app/data/configs \
-v /root/hm/icons:/app/public/icons ghcr.io/ajnart/homarr:latest
ExecStop=/usr/bin/podman stop \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id
ExecStopPost=/usr/bin/podman rm \
-f \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id
Type=notify
NotifyAccess=all
[Install]
WantedBy=default.target
Manicraft1001
Manicraft10017mo ago
Hi, thanks for the report. @Meierschlumpf seems like the move is failing. Can you look into this?
Meierschlumpf
Meierschlumpf7mo ago
GitHub
🐛 Fix podman issue by Meierschlumpf · Pull Request #1586 · ajnart/h...
Category Bugfix Overview Add rm command before each mv command in run.sh script Issue Number Post in Discord
Solution
ajnart
ajnart7mo ago
This issue should be fixed with release v0.14.1 ! If not, please open up a ticket in #💬・get-help
GitHub
Release v0.14.1 Stability improvement and bug fixes · ajnart/homarr
Your issues should be resolved! During the last release, we didn't spend enough time to test on different hardware configurations to ensure that v0.14.0 would work on the majority of people'...