ITADN

Running rootless

#200ClosedEirikr70 创建于 2025-08-24
E
Eirikr70commented
Hello, I was running Docker-Radicale rootless with the following `docker-compose.yml` and it was usually running fine. ``` services: radicale: image: tomsquest/docker-radicale container_name: radicale ports: - 192.168.1.102:5232:5232 user: 1001:1001 init: true read_only: true security_opt: - no-new-privileges:true cap_drop: - ALL cap_add: - SETUID - SETGID - CHOWN - KILL healthcheck: test: curl -f http://127.0.0.1:5232 || exit 1 interval: 30s retries: 3 restart: on-failure:5 environment: - TZ=Europe/Paris volumes: - /srv/nas/radicale/data:/data - ./config:/config ``` With the latest update, it has failed with the following message `radicale | [2025-08-24 10:52:13 +0200] [7] [CRITICAL] An exception occurred during server startup: 'getpwuid(): uid not found: 1001'` Is it related to a recent change ? Thanks !
关闭于 2025-09-16 15 条评论