1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/superset/README.md

29 lines
643 B
Markdown
Raw Normal View History

2018-07-28 00:45:54 +00:00
superset
========
2018-07-28 02:51:01 +00:00
## Up and Running
```bash
2019-01-09 03:11:28 +00:00
$ mkdir -p -m 777 data/superset
$ wget -P data/superset https://github.com/amancevice/superset/raw/master/examples/celery/superset/superset_config.py
$ echo 'ENABLE_PROXY_FIX = True' >> data/superset/superset_config.py
$ echo 'MAPBOX_API_KEY=pk.xxxxxx.xxxxxx' > .env
2018-07-28 02:51:01 +00:00
$ docker-compose up -d
$ docker-compose exec superset superset-init
2019-01-09 03:11:28 +00:00
2018-07-28 02:51:01 +00:00
Username [admin]: admin
User first name [admin]:
User last name [user]:
Email [admin@fab.org]:
Password: ******
Repeat for confirmation: ******
2019-01-09 03:11:28 +00:00
$ curl http://localhost:8088
2018-07-28 02:51:01 +00:00
```
2020-04-20 04:27:35 +00:00
## Upgrading Guide
- <https://superset.apache.org/installation.html#upgrading>