Is there an existing issue for this?
Current Behavior
Currently, when starting a brand new container without existing configuration in rootless Podman, this prints every second and the service never starts up:
[05-Jun-2025 00:05:59] ERROR: failed to open configuration file '/etc/php83/php-fpm.conf': Permission denied (13)
[05-Jun-2025 00:05:59] ERROR: failed to load configuration file '/etc/php83/php-fpm.conf'
[05-Jun-2025 00:05:59] ERROR: FPM initialization failed
Expected Behavior
The server should start
Steps To Reproduce
With the following Podman quadlet grocy.container:
[Container]
Environment=PGID=1000
Environment=PUID=1000
Environment=TZ=Europe/Stockholm
Image=lscr.io/linuxserver/grocy:latest
PublishPort=9283:80/tcp
Volume=%E/%N:/config
[Service]
Restart=always
With an empty folder at $HOME/.config/grocy (where %E/%N will resolve)
Environment
- OS: Arch Linux
- How podman* service was installed: pacman (distro package manager)
CPU architecture
x86-64
Docker creation
/usr/bin/podman run --name grocy --cidfile=/run/user/1000/grocy.cid --replace --rm --cgroups=split --sdnotify=conmon -d -v /home/rsa/.config/grocy:/config --publish 9283:80/tcp --env PGID=1000 --env PUID=1000 --env TZ=Europe/Stockholm lscr.io/linuxserver/grocy:latest
Container logs
[migrations] started
[migrations] 01-nginx-site-confs-default: skipped
[migrations] 02-default-location: skipped
[migrations] done
───────────────────────────────────────
██╗ ███████╗██╗ ██████╗
██║ ██╔════╝██║██╔═══██╗
██║ ███████╗██║██║ ██║
██║ ╚════██║██║██║ ██║
███████╗███████║██║╚██████╔╝
╚══════╝╚══════╝╚═╝ ╚═════╝
Brought to you by linuxserver.io
───────────────────────────────────────
To support LSIO projects visit:
https://www.linuxserver.io/donate/
───────────────────────────────────────
GID/UID
───────────────────────────────────────
User UID: 1000
User GID: 1000
───────────────────────────────────────
Linuxserver.io version: v4.5.0-ls293
Build-date: 2025-05-18T07:48:03+00:00
───────────────────────────────────────
using keys found in /config/keys
[custom-init] No custom files found, skipping...
[05-Jun-2025 00:07:29] ERROR: failed to open configuration file '/etc/php83/php-fpm.conf': Permission denied (13)
[05-Jun-2025 00:07:29] ERROR: failed to load configuration file '/etc/php83/php-fpm.conf'
[05-Jun-2025 00:07:29] ERROR: FPM initialization failed
[ls.io-init] done.
[05-Jun-2025 00:07:30] ERROR: failed to open configuration file '/etc/php83/php-fpm.conf': Permission denied (13)
[05-Jun-2025 00:07:30] ERROR: failed to load configuration file '/etc/php83/php-fpm.conf'
[05-Jun-2025 00:07:30] ERROR: FPM initialization failed
[05-Jun-2025 00:07:31] ERROR: failed to open configuration file '/etc/php83/php-fpm.conf': Permission denied (13)
[05-Jun-2025 00:07:31] ERROR: failed to load configuration file '/etc/php83/php-fpm.conf'
[05-Jun-2025 00:07:31] ERROR: FPM initialization failed
[05-Jun-2025 00:07:32] ERROR: failed to open configuration file '/etc/php83/php-fpm.conf': Permission denied (13)
[05-Jun-2025 00:07:32] ERROR: failed to load configuration file '/etc/php83/php-fpm.conf'
[05-Jun-2025 00:07:32] ERROR: FPM initialization failed
(repeats indefinitely)
Is there an existing issue for this?
Current Behavior
Currently, when starting a brand new container without existing configuration in rootless Podman, this prints every second and the service never starts up:
Expected Behavior
The server should start
Steps To Reproduce
With the following Podman quadlet
grocy.container:With an empty folder at
$HOME/.config/grocy(where%E/%Nwill resolve)Environment
CPU architecture
x86-64
Docker creation
Container logs