We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc92447 commit 5d28ac1Copy full SHA for 5d28ac1
1 file changed
examples/docker-compose/celery-task/docker-compose.yaml
@@ -19,8 +19,6 @@ services:
19
CELERY_PARAMS: -E -Q math -n math
20
volumes:
21
- ./plugins:/plugins
22
- ports:
23
- - "127.0.0.1:8980:8989"
24
25
worker-counter:
26
image: opastack/api:latest
@@ -31,6 +29,16 @@ services:
31
29
32
30
33
+ flower:
+ image: opastack/api:latest
34
+ environment:
35
+ OPA_PLUGIN_PATHS: "/plugins"
36
+ MODE: "flower"
37
+ volumes:
38
+ - ./plugins:/plugins
39
+ ports:
40
+ - "127.0.0.1:5555:5555"
41
+
42
# ### untested
43
# worker-beat:
44
# image: opastack/api:latest
@@ -46,5 +54,5 @@ services:
46
54
47
55
rabbitmq:
48
56
image: "rabbitmq:3.8-management"
49
- # ports:
50
- # - "15672:15672" # Management port
57
58
+ - "15671:15672" # Management port
0 commit comments