Hi all :wave:

I’m pretty new here, I got some recommendations about Redash and I try to install it on my computer via docker (first time I work with it) and i will be glad for some video/guide how to install it.
I tried from here: https://redash.io/help/open-source/dev-guide/docker but without success (after running the commend: “docker-compose up -d” it shows me an error “Error response from daemon: Ports are not available: listen tcp 0.0.0.0:5000: bind: address already in use.”).

Any help?..

TNX :slight_smile:

Hi there and welcome to the forum :wave:

It sounds like some other service is using port 5000 on your computer. You can instruct Redash to use a different port by modifying the docker-compose.yml file:

services:
  server:
    <<: *redash-service
    command: dev_server
    depends_on:
      - postgres
      - redis
    ports:
      - "5000:5000"
      - "5678:5678"

so that it says 5001:5000 instead. Then you can access Redash on your machine by visiting http://localhost:5001.