Run the container in detached mode and follow the official documentation:
# Run container in detached mode and share its port
docker run -p 127.0.0.1:8088:8088 --rm --detach --name superset_container terminal1/superset
# Create an admin and migrate the database
docker exec -it superset_container fabmanager create-admin --app superset
docker exec -it superset_container superset db upgrade
docker exec -it superset_container superset init
Open 127.0.0.1:8088 in your browser and enjoy playing with Superset.
To stop the detached container use the following command:
docker stop superset_container
This container is similar to amancevice/superset but has some differences:
Content type
Image
Digest
Size
133.9 MB
Last updated
over 8 years ago
docker pull terminal1/superset