Skip to content

Commit

Permalink
Merge pull request #32 from studio-recoding/feat/cicd
Browse files Browse the repository at this point in the history
[fix] fix port number
  • Loading branch information
uommou authored Mar 23, 2024
2 parents b04097c + ee54349 commit b918493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
docker pull ${{ env.DOCKER_IMAGE }}:latest
docker stop ${{ env.NAME }} || true
docker rm ${{ env.NAME }} || true
docker run -d -p 3000:3000 --name ${{ env.NAME }} --restart always \
docker run -d -p 80:80 --name ${{ env.NAME }} --restart always \
-e CHROMA_DB_IP_ADDRESS=${{ secrets.CHROMA_DB_IP_ADDRESS }} \
-e OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} \
${{ env.DOCKER_IMAGE }}:latest

0 comments on commit b918493

Please sign in to comment.