The action couldn't be completed because an unknown error has occurred.where's the log file as running in docker@ubuntu?

Run Baserow in a docker on Ubuntu(host), the Postgres is running in host, the Baserow is running in a docker. Here is the docker-compose.yml:
version: “3.4”
services:
baserow:
container_name: baserow
image: baserow/baserow:1.23.2
environment:
- BASEROW_PUBLIC_URL=http://192.168.218.99/
- DATABASE_HOST=172.17.0.1
- DATABASE_NAME=baserow
- DATABASE_USER=baserow
- DATABASE_PASSWORD=baserow_pwd
- DATABASE_PORT=5432
ports:
- “80:80”
- “443:443”
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data:
Using pgAdmin4, I can see the DATABASE baserow has 163 new tables created.
1712477515480
But, I get an Error msg when i sign up admin account(by visit http://192.168.218.99/):
Action not completed.
The action couldn’t be completed because an unknown error has occurred.
1712477581089

What’s WRONG? where can i see the log file?
Need some HELP. Thanks.

Hi!

Could you change your BASEROW_PUBLIC_URL to http://192.168.218.99 (no / at the end) and see if this helps?

where can i see the log file?

If you’re running with docker compose, you can run docker compose up to see console output from the container directly. Note, that if you exit from this command (i.e. with Ctrl+C combination), you’ll close the container as well. When the container is started with

docker compose up -d

command, you can access console output with

docker compose logs -tf baserow

command (or, docker logs -tf $baserow-container where $baserow-container is running container name, wich can be set by compose). See Docker compose logs docs for details.

1 Like