Skip to content

Commit

Permalink
ARM64 added
Browse files Browse the repository at this point in the history
  • Loading branch information
andrrsin committed Mar 3, 2024
1 parent 2831267 commit e33e27a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run: npm --prefix webapp run test:e2e
docker-push-webapp:
name: Push webapp Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: ARM64
permissions:
contents: read
packages: write
Expand All @@ -61,7 +61,7 @@ jobs:
buildargs: API_URI
docker-push-authservice:
name: Push auth service Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: ARM64
permissions:
contents: read
packages: write
Expand All @@ -78,7 +78,7 @@ jobs:
workdir: users/authservice
docker-push-userservice:
name: Push user service Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: ARM64
permissions:
contents: read
packages: write
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- "27017:27017"
networks:
- mynetwork
platform: linux/arm64
# platform: linux/arm64

authservice:
container_name: authservice-${teamname:-defaultASW}
Expand All @@ -25,7 +25,7 @@ services:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/userdb
platform: linux/arm64
# platform: linux/arm64

userservice:
container_name: userservice-${teamname:-defaultASW}
Expand All @@ -40,7 +40,7 @@ services:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/userdb
platform: linux/arm64
# platform: linux/arm64

gatewayservice:
container_name: gatewayservice-${teamname:-defaultASW}
Expand All @@ -58,7 +58,7 @@ services:
environment:
AUTH_SERVICE_URL: http://authservice:8002
USER_SERVICE_URL: http://userservice:8001
platform: linux/arm64
# platform: linux/arm64

webapp:
container_name: webapp-${teamname:-defaultASW}
Expand All @@ -69,7 +69,7 @@ services:
- gatewayservice
ports:
- "3000:3000"
platform: linux/arm64
# platform: linux/arm64


prometheus:
Expand Down

0 comments on commit e33e27a

Please sign in to comment.