update superset

This commit is contained in:
kev 2020-04-20 12:27:35 +08:00
parent ea498c083c
commit a6b7d729aa
3 changed files with 13 additions and 9 deletions

View File

@ -22,3 +22,7 @@ Repeat for confirmation: ******
$ curl http://localhost:8088
```
## Upgrading Guide
- <https://superset.apache.org/installation.html#upgrading>

View File

@ -6,7 +6,7 @@ FROM arm32v7/debian:buster
MAINTAINER EasyPi Software Foundation
# Configure environment
ENV SUPERSET_VERSION=0.34.1 \
ENV SUPERSET_VERSION=0.36.0 \
SUPERSET_REPO=apache/incubator-superset \
SUPERSET_HOME=/var/lib/superset \
PYTHONPATH=/etc/superset:/home/superset:$PYTHONPATH

View File

@ -1,4 +1,4 @@
version: '3.7'
version: '3.8'
services:
@ -7,20 +7,20 @@ services:
command: --save 900 1
volumes:
- ./data/redis:/data
restart: always
restart: unless-stopped
postgres:
image: postgres:11-alpine
image: postgres:12-alpine
volumes:
- ./data/postgres:/var/lib/postgresql/data
environment:
POSTGRES_DB: superset
POSTGRES_PASSWORD: superset
POSTGRES_USER: superset
restart: always
restart: unless-stopped
superset:
image: amancevice/superset:0.34.1
image: amancevice/superset:0.36.0
ports:
- "8088:8088"
volumes:
@ -30,10 +30,10 @@ services:
depends_on:
- postgres
- redis
restart: always
restart: unless-stopped
worker:
image: amancevice/superset:0.34.1
image: amancevice/superset:0.36.0
command: celery worker
volumes:
- ./data/superset:/etc/superset
@ -42,4 +42,4 @@ services:
depends_on:
- postgres
- redis
restart: always
restart: unless-stopped