Redash Docker Instance
- Clone repo locally
- Start Docker
- Ensure the
docker-compose.yml
config is pointing to the env file and postgresql folder exists - Run
docker-compose run server create_db
. If having issues run,docker-compose run --rm server create_db
. See the list of containers running usingdocker ps -a
. Removing running containers usingdocker rm $(docker ps -a -q)
or use the Docker extension in VS Code. - Run
docker-compose up -d
- Visit
localhost:5000
- To stop run
docker-compose stop
- This is also a helpful article here