jaymes15 / Redash-docker-compose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redash using docker compose

Requirements to run this project

Getting started

To start project with make command:

  • install docker
  • install docker-compose
  • install make command
  • Clone the project
  • Change directory to the project directory
  • Create .env file in project root or in same directory as .sample.env
  • Copy values from .sample.env to .env
  • Run:
    make start-redash
  • The application would be available at http://localhost:5000/

To stop project with make command:

  • Run:
    make stop-redash
  • Delete data folder created (This step is optional).

To start project with docker-compose:

  • Change directory to the project directory
  • Create .env file in project root or in same directory as .sample.env
  • Copy values from .sample.env to .env
  • Run:
    docker-compose run --rm server create_db
  • Run:
    docker-compose up --build
  • The application would be available at http://localhost:5000/

To stop project with docker-compose:

  • Run:
    docker-compose down -v 
  • Run:
    docker-compose down
  • Delete data folder created (This step is optional).

About


Languages

Language:Makefile 100.0%