소스 검색

add dify-sandbox health check in docker-compose.yaml (#8121) (#8124)

tags/0.8.0
zhuhao 1 년 전
부모
커밋
50d92f0fd4
No account linked to committer's email address
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    1
      docker/docker-compose.middleware.yaml
  2. 3
    1
      docker/docker-compose.yaml

+ 3
- 1
docker/docker-compose.middleware.yaml 파일 보기

@@ -41,7 +41,7 @@ services:

# The DifySandbox
sandbox:
image: langgenius/dify-sandbox:0.2.6
image: langgenius/dify-sandbox:0.2.7
restart: always
environment:
# The DifySandbox configurations
@@ -56,6 +56,8 @@ services:
SANDBOX_PORT: ${SANDBOX_PORT:-8194}
volumes:
- ./volumes/sandbox/dependencies:/dependencies
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8194/health" ]
networks:
- ssrf_proxy_network


+ 3
- 1
docker/docker-compose.yaml 파일 보기

@@ -287,7 +287,7 @@ services:

# The DifySandbox
sandbox:
image: langgenius/dify-sandbox:0.2.6
image: langgenius/dify-sandbox:0.2.7
restart: always
environment:
# The DifySandbox configurations
@@ -302,6 +302,8 @@ services:
SANDBOX_PORT: ${SANDBOX_PORT:-8194}
volumes:
- ./volumes/sandbox/dependencies:/dependencies
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8194/health" ]
networks:
- ssrf_proxy_network


Loading…
취소
저장