Skip to content

Commit

Permalink
Fix docker compose.yaml error
Browse files Browse the repository at this point in the history
Docker Compose requires all named volumes to be explicitly defined.

Fix github issue opea-project#1486

Signed-off-by: Wang, Xigui <[email protected]>
  • Loading branch information
xiguiw committed Feb 7, 2025
1 parent 7ac8cf5 commit bc906b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DocSum/docker_compose/intel/hpu/gaudi/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- ${LLM_ENDPOINT_PORT:-8008}:80
volumes:
- "${DATA_PATH:-data}:/data"
- "${DATA_PATH:-./data}:/data"
environment:
no_proxy: ${no_proxy}
http_proxy: ${http_proxy}
Expand Down
2 changes: 1 addition & 1 deletion FaqGen/docker_compose/intel/hpu/gaudi/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- ${LLM_ENDPOINT_PORT:-8008}:80
volumes:
- "${DATA_PATH:-data}:/data"
- "${DATA_PATH:-./data}:/data"
environment:
no_proxy: ${no_proxy}
http_proxy: ${http_proxy}
Expand Down

0 comments on commit bc906b5

Please sign in to comment.