Skip to content

Commit 5013df7

Browse files
committed
update superset
1 parent b139877 commit 5013df7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

superset/docker-compose.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1+
#
2+
# https://github.com/amancevice/docker-superset/blob/main/examples/celery/docker-compose.yml
3+
#
4+
15
version: '3.8'
26

37
services:
48

59
redis:
6-
image: redis:5-alpine
10+
image: redis:6-alpine
711
command: --save 900 1
812
volumes:
913
- ./data/redis:/data
1014
restart: unless-stopped
1115

1216
postgres:
13-
image: postgres:12-alpine
17+
image: postgres:14-alpine
1418
volumes:
1519
- ./data/postgres:/var/lib/postgresql/data
1620
environment:
@@ -20,7 +24,7 @@ services:
2024
restart: unless-stopped
2125

2226
superset:
23-
image: amancevice/superset:1.1.0
27+
image: amancevice/superset:1.4.0
2428
ports:
2529
- "8088:8088"
2630
volumes:
@@ -33,7 +37,7 @@ services:
3337
restart: unless-stopped
3438

3539
worker:
36-
image: amancevice/superset:1.1.0
40+
image: amancevice/superset:1.4.0
3741
command: celery worker
3842
volumes:
3943
- ./data/superset:/etc/superset

0 commit comments

Comments
 (0)