Docker for dummies

Hello!
I have installed Docker Engine on my server and run the following code:

docker run \
  -d \
  --name baserow \
  -e BASEROW_PUBLIC_URL=http://myserverurl \
  -v baserow_data:/baserow/data \
  -p 80:80 \
  -p 443:443 \
  --restart unless-stopped \
  baserow/baserow:1.20.2

I can’t seem to be able to access what I installed, even when using:
http://myserverurl:8080 or http://myserverurl:80

Apologies for the dumb question but: how can I access Baserow on my server?

Thx for your help :slight_smile:

Hi,

I’m far from a Docker specialist, but you can access baserow in your local machine with http://localhost

So this would mean that you repalce BASEROW_PUBLIC_URL with http://localhost

Hi Frederik, thank you for your reply. The idea is to have Baserow on a server that is not on my local machine but hosted elsewhere. Do you know how to handle that?

It turns out it works now just by clicking my server link, dunno why but great!

1 Like