Skip to content

Commit 6101733

Browse files
perzeusscrazywoola
andauthored
fix(docker): plugin daemon lacks database dependency (#15038)
Co-authored-by: crazywoola <[email protected]>
1 parent 778861f commit 6101733

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker/docker-compose-template.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ services:
153153
- "${EXPOSE_PLUGIN_DEBUGGING_PORT:-5003}:${PLUGIN_DEBUGGING_PORT:-5003}"
154154
volumes:
155155
- ./volumes/plugin_daemon:/app/storage
156-
156+
depends_on:
157+
- db
157158

158159
# ssrf_proxy server
159160
# for more information, please refer to

docker/docker-compose.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,8 @@ services:
568568
- "${EXPOSE_PLUGIN_DEBUGGING_PORT:-5003}:${PLUGIN_DEBUGGING_PORT:-5003}"
569569
volumes:
570570
- ./volumes/plugin_daemon:/app/storage
571-
571+
depends_on:
572+
- db
572573

573574
# ssrf_proxy server
574575
# for more information, please refer to

0 commit comments

Comments
 (0)