File tree Expand file tree Collapse file tree
SearchQnA/docker_compose/amd/gpu/rocm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,10 +176,27 @@ services:
176176 no_proxy : ${no_proxy}
177177 https_proxy : ${https_proxy}
178178 http_proxy : ${http_proxy}
179- BACKEND_BASE_URL : ${SEARCH_BACKEND_SERVICE_ENDPOINT}
180179 ipc : host
181180 restart : always
182-
181+ search-nginx-server :
182+ image : ${REGISTRY:-opea}/nginx:${TAG:-latest}
183+ container_name : search-nginx-server
184+ depends_on :
185+ - search-backend-server
186+ - search-ui-server
187+ ports :
188+ - " ${NGINX_PORT:-80}:80"
189+ environment :
190+ - no_proxy=${no_proxy}
191+ - https_proxy=${https_proxy}
192+ - http_proxy=${http_proxy}
193+ - FRONTEND_SERVICE_IP=search-ui-server
194+ - FRONTEND_SERVICE_PORT=5173
195+ - BACKEND_SERVICE_NAME=search
196+ - BACKEND_SERVICE_IP=search-backend-server
197+ - BACKEND_SERVICE_PORT=8888
198+ ipc : host
199+ restart : always
183200networks :
184201 default :
185202 driver : bridge
You can’t perform that action at this time.
0 commit comments