Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
Self-hosted
If you are self-hosting, what version of Baserow are you running?
baserow version 1.32.5
If you are self-hosting, which installation method do you use to run Baserow?
Docker version 28.0.4
On a debian 11.11 LXC container
On a proxmox 7.4 physical host
What are the exact steps to reproduce this issue?
See description in topic : Baserow docker container - Error on startup - Cannot "mv" file - #12 by olgatrykush
Steps :
- Install docker
- Launch container with the one-liner :
docker run \ -d \ --name baserow \ -e BASEROW_PUBLIC_URL=http://localhost \ -v baserow_data:/baserow/data \ -p 80:80 \ -p 443:443 \ --restart unless-stopped \ baserow/baserow:1.32.5
- Container is restarting in loop, Observe the error message :
mv: cannot move '/baserow/supervisor/includes/disabled/embedded-postgres.conf' to a subdirectory of itself, '/baserow/supervisor/includes/enabled/embedded-postgres.conf'
- Re-try with an added
-e DATABASE_URL=postgresql://user:pwd@host:port/db
to the command. - See the same failure, with a slightly different error
mv: cannot move '/baserow/supervisor/includes/disabled/embedded-redis.conf' to a subdirectory of itself, '/baserow/supervisor/includes/enabled/embedded-redis.conf'
Thanks for any help !