You can install Docker from the following link: https://docs.docker.com/install/.
After installing Docker we can proceed to Redash installation
- Clone the Redash repository (or download a .zip release).
- Make sure you have a Docker machine up and running.
- Make sure your current working directory is the root of this GitHub repository.
- Use the docker-compose.production.yml configuration file and modify the configuration values as needed. For example, you may want to change these:
- The Postgres volume location
- The value of REDASH_COOKIE_SECRET (especially if this instance is not just for testing purposes)
- Run docker-compose -f docker-compose.production.yml run --rm server create_db to set up the database.
- Run docker-compose ...