Sign inSign up

terminal1/superset

By terminal1

•Updated over 8 years ago

Apache Superset container

Image
0

627

terminal1/superset repository overview

⁠Docker container for Apache Superset

Docker Automated build

  • Alpine container based Apache Superset⁠ container
  • Has PostgreSQL and Redis backends pre-installed
⁠Example

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
⁠Yet another docker image for superset?

This container is similar to amancevice/superset⁠ but has some differences:

  • Alpine based (instead of Debian), total size ~4x smaller.
  • Works only with PostgreSQL and Redis.
  • Result image uses gunicorn + gevent for the webserver instead of deprecated⁠ "superset runserver".

Tag summary

Content type

Image

Digest

Size

133.9 MB

Last updated

over 8 years ago

docker pull terminal1/superset