feat: implement Docker Hub integration for building and pushing images in CI/CD workflow

This commit is contained in:
Siddhant Rai
2025-08-28 12:01:04 +05:30
parent b3af4ee50b
commit 9da4215d1f
4 changed files with 73 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
name: docsgpt-oss
services:
frontend:
image: arc53/docsgpt:develop # some changes required here
image: arc53/docsgpt:latest
environment:
- VITE_API_HOST=http://localhost:7091
- VITE_API_STREAMING=$VITE_API_STREAMING
@@ -12,7 +12,7 @@ services:
backend:
user: root
image: arc53/docsgpt:develop # some changes required here
image: arc53/docsgpt:latest
environment:
- API_KEY=$API_KEY
- EMBEDDINGS_KEY=$API_KEY
@@ -35,7 +35,7 @@ services:
worker:
user: root
image: arc53/docsgpt:develop # some changes required here
image: arc53/docsgpt:latest
command: celery -A application.app.celery worker -l INFO -B
environment:
- API_KEY=$API_KEY