Customizing docker image building it and using it to deploy superset
Tutorial to follow along
Steps For youtube
-
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 -
Let's move to directory
cd superset -
Once done lets run the application
export TAG=6.1.0docker compose -f docker-compose-image-tag.yml up -
Check the logs and check if everything is running fine you can use
-dflag as shown below.docker compose -f docker-compose-image-tag.yml up -d