Skip to main content

Customizing docker image building it and using it to deploy superset

Tutorial to follow along

Steps For youtube

  1. To create custom docker image lets clone superset's github Repo using following command. To reduce time and resources we will only clone till depth 1 and for this tutorial I am selecting 4.0 branch.

    git clone --depth=1 -b 6.1.0 https://github.com/apache/superset.git
  2. Let's move to directory

    cd superset
  3. Once done lets run the application

    export TAG=6.1.0
    docker compose -f docker-compose-image-tag.yml up
  4. Check the logs and check if everything is running fine you can use -d flag as shown below.

    docker compose -f docker-compose-image-tag.yml up -d