File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
scripts/images/deer-flow-frontend Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,11 @@ mineru-k8s-uninstall:
178178
179179.PHONY : datamate-docker-install
180180datamate-docker-install :
181- cd deployment/docker/datamate && export REGISTRY=$(REGISTRY ) && docker compose -f docker-compose.yml up -d
181+ @if docker compose ls --filter name=deer-flow | grep -q deer-flow; then \
182+ cd deployment/docker/datamate && export NGINX_CONF=" ./backend-with-deer-flow.conf" && export REGISTRY=$(REGISTRY ) && docker compose -f docker-compose.yml up -d; \
183+ else \
184+ cd deployment/docker/datamate && export REGISTRY=$(REGISTRY ) && docker compose -f docker-compose.yml up -d; \
185+ fi
182186
183187.PHONY : datamate-docker-uninstall
184188datamate-docker-uninstall :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM node:20-alpine AS deps
44RUN apk add --no-cache libc6-compat openssl git
55WORKDIR /app
66
7- RUN git clone https://github.com/bytedance /deer-flow.git /deer-flow \
7+ RUN git clone https://github.com/ModelEngine-Group /deer-flow.git /deer-flow \
88 && mv /deer-flow/web/* /app \
99 && rm -rf /deer-flow
1010# Install dependencies based on the preferred package manager
@@ -24,7 +24,7 @@ RUN apk add --no-cache git
2424WORKDIR /app
2525ARG NEXT_PUBLIC_API_URL="/deer-flow-backend"
2626
27- RUN git clone https://github.com/bytedance /deer-flow.git /deer-flow
27+ RUN git clone https://github.com/ModelEngine-Group /deer-flow.git /deer-flow
2828
2929RUN cd /deer-flow \
3030 && mv /deer-flow/web/* /app \
You can’t perform that action at this time.
0 commit comments