We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 935a2a4 commit f61907bCopy full SHA for f61907b
Makefile
@@ -1,7 +1,10 @@
1
namespace ?= default
2
releaseName ?= devopsgpt
3
4
-all: build up
+all: update-submodule build up
5
+
6
+update-submodule:
7
+ git submodule init && git submodule update
8
9
build:
10
docker compose build
docker-compose.yml
@@ -5,7 +5,7 @@ services:
context: .
dockerfile: Dockerfile
- image: 81318131/fastapi_gpt
+ image: fastapi_gpt
container_name: fastapi_gpt
command: fastapi run app/main.py --port 8080
11
volumes:
@@ -24,7 +24,7 @@ services:
24
25
args:
26
VITE_API_CLIENT_BASE_URL: "http://localhost:8080/api/"
27
- image: 81318131/web_gpt
+ image: web_gpt
28
container_name: web_gpt
29
ports:
30
- "80:4173"
0 commit comments