Help installing with Docker

Install with Docker instructions says: “Run the command line below…” and

*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.13.0*

Which command line do I run this in? How do I get there?

I tried windows cmd and powershell.

I have docker up and running with a GUI where I can see postgres-korr that I somehow installed…

I figured this out (with help)

In windows cmd terminal you have to remove the new lines like this

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.13.0