An Apache Superset image with teradatasql library
806
An Apache Superset image with teradatasql library that allows you to connect to a Teradata Vantage database. Use it the same way you would use the base Superset image:
This example starts the container and adds a user called admin with the password teradata. It preserves the configuration in a Docker-managed volume throughout container restarts.
docker volume create superset
docker run --add-host=host.docker.internal:host-gateway \
-d -p 8080:8088 -v superset:/app/superset_home \
--name superset teradata/superset
docker exec superset superset fab create-admin \
--username admin \
--firstname Superset \
--lastname Admin \
--email [email protected] \
--password teradata
docker exec superset superset db upgrade
docker exec superset superset init
Content type
Image
Digest
sha256:e996edeb4…
Size
736.6 MB
Last updated
about 1 year ago
docker pull teradata/superset