Skip to content

Terminal1/docker-superset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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".

Releases

No releases published

Packages

No packages published

Languages