Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pglez82/asw2324_0
Browse files Browse the repository at this point in the history
  • Loading branch information
pglez82 committed Mar 3, 2024
2 parents 6a808c8 + 51c7c2e commit 15242ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ jobs:
needs: [e2e-tests]
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
Expand All @@ -76,6 +78,8 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
workdir: users/authservice
platforms: linux/amd64,linux/arm64

docker-push-userservice:
name: Push user service Docker Image to GitHub Packages
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:

authservice:
container_name: authservice-${teamname:-defaultASW}
image: ghcr.io/arquisoft/asw2324_0/authservice:latest
image: ghcr.io/pglez82/asw2324_0/authservice:latest
profiles: ["dev", "prod"]
build: ./users/authservice
depends_on:
Expand All @@ -27,7 +27,7 @@ services:

userservice:
container_name: userservice-${teamname:-defaultASW}
image: ghcr.io/arquisoft/asw2324_0/userservice:latest
image: ghcr.io/pglez82/asw2324_0/userservice:latest
profiles: ["dev", "prod"]
build: ./users/userservice
depends_on:
Expand All @@ -41,7 +41,7 @@ services:

gatewayservice:
container_name: gatewayservice-${teamname:-defaultASW}
image: ghcr.io/arquisoft/asw2324_0/gatewayservice:latest
image: ghcr.io/pglez82/asw2324_0/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
Expand All @@ -58,7 +58,7 @@ services:

webapp:
container_name: webapp-${teamname:-defaultASW}
image: ghcr.io/arquisoft/asw2324_0/webapp:latest
image: ghcr.io/pglez82/asw2324_0/webapp:latest
profiles: ["dev", "prod"]
build: ./webapp
depends_on:
Expand Down Expand Up @@ -107,4 +107,4 @@ volumes:

networks:
mynetwork:
driver: bridge
driver: bridge

0 comments on commit 15242ca

Please sign in to comment.