Running the dev environment

Hi @petrs,
thanks for your reply.
initially, I wanted to run dev through this command ./dev.sh and I got the error message like “find: The argument to -user should not be empty”.
Then I used this link Cannot run the app in dev mode and by using this command cp .env.example .env
the below environment variables were set:
SECRET_KEY=baserow
DATABASE_PASSWORD=baserow
REDIS_PASSWORD=baserow
BASEROW_PUBLIC_URL=http://localhost
BASEROW_CADDY_ADDRESSES=:80
WEB_FRONTEND_PORT=80
HOST_PUBLISH_IP=0.0.0.0

EMAIL_SMTP=
EMAIL_SMTP_HOST=
EMAIL_SMTP_PORT=
EMAIL_SMTP_USE_TLS=
EMAIL_SMTP_USER=
EMAIL_SMTP_PASSWORD=
FROM_EMAIL=no-reply@localhost

After that I used this command:
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build

but the above figure error was shown.

My struggling is what the database password is? I mean how should I set it?
thanks.