I have a self hosted Docker Compose installation. It’s using the all-in-one 2.0.3 image on a newly-installed Ubuntu VM. The UFW firewall isn’t installed. The firewall on my local computer is turned off.
I can access the Baserow admin pages fine via my local network IP address (http://192.168.1.x).
However, the BASEROW_PUBLIC_URL address web page won’t load, even if I keep everything local to my network with a hosts file record (in my case, I use an AdGuard DNS rewrite, which rewrites https://baserow.mydomain.me to my http://192.168.1.x address.)
The browser shows this error:
ERR_CONNECTION_TIMED_OUT
I’d like to get this URL working locally before trying to make it work externally.
docker-compose.yml file
services:
baserow:
container_name: baserow
image: baserow/baserow:2.0.3
restart: unless-stopped
environment:
BASEROW_PUBLIC_URL: ‘https://baserow.mydomain.me’
ports:
- “80:80”
- “443:443”
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data:
.env file
SECRET_KEY= redacted
DATABASE_PASSWORD=redacted
REDIS_PASSWORD=redacted
DATABASE_USER=redacted
DATABASE_NAME=redacted
DATABASE_HOST=192.168.1.x
#DATABASE_PORT=
#DATABASE_URL=
#DATABASE_OPTIONS=