Skip to content

Commit

Permalink
change docker hub to tactful’s docker hub
Browse files Browse the repository at this point in the history
  • Loading branch information
norali12 committed Sep 25, 2024
1 parent 60175a2 commit 07ef452
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: noraali/backend:${{ env.TAG }}
tags: tactful/microcentral-backend:${{ env.TAG }}
context: .
file: ./Dockerfile

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: noraali/frontend:${{ env.TAG }}
tags: tactful/microcentral-frontend:${{ env.TAG }}
context: ./frontend
file: ./frontend/Dockerfile

Expand All @@ -96,7 +96,7 @@ jobs:
# TAG=$(git describe --tags --abbrev=0)
# echo "$TAG"
# env:
# TAG:${{ env.TAG }}
# TAG:${{env.TAG}}



Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ services:
backend:
profiles: # will start only if `docker-compose --profile prod up` is used
- prod
image: noraali/backend:v1.5.1
image: tactful/microcentral-backend:v1.5.1
command: poetry run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
volumes:
- .:/usr/src/app
networks:
- backend
depends_on:
- database
- oauth2-proxy
# - oauth2-proxy
env_file: .env
ports:
- "8000:8000"
Expand All @@ -67,11 +67,11 @@ services:
- ADMINER_DEFAULT_SERVER=database

frontend:
image: noraali/frontend:v1.5.1
image: tactful/microcentral-frontend:v1.5.1
depends_on:
- backend
- database
- oauth2-proxy
# - oauth2-proxy
env_file: .env
ports:
- "3000:3000"
Expand Down

0 comments on commit 07ef452

Please sign in to comment.