File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # https://github.com/amancevice/docker-superset/blob/main/examples/celery/docker-compose.yml
3
+ #
4
+
1
5
version : ' 3.8'
2
6
3
7
services :
4
8
5
9
redis :
6
- image : redis:5 -alpine
10
+ image : redis:6 -alpine
7
11
command : --save 900 1
8
12
volumes :
9
13
- ./data/redis:/data
10
14
restart : unless-stopped
11
15
12
16
postgres :
13
- image : postgres:12 -alpine
17
+ image : postgres:14 -alpine
14
18
volumes :
15
19
- ./data/postgres:/var/lib/postgresql/data
16
20
environment :
@@ -20,7 +24,7 @@ services:
20
24
restart : unless-stopped
21
25
22
26
superset :
23
- image : amancevice/superset:1.1 .0
27
+ image : amancevice/superset:1.4 .0
24
28
ports :
25
29
- " 8088:8088"
26
30
volumes :
@@ -33,7 +37,7 @@ services:
33
37
restart : unless-stopped
34
38
35
39
worker :
36
- image : amancevice/superset:1.1 .0
40
+ image : amancevice/superset:1.4 .0
37
41
command : celery worker
38
42
volumes :
39
43
- ./data/superset:/etc/superset
You can’t perform that action at this time.
0 commit comments