Skip to content

Commit

Permalink
refacto: rename frontend -> front
Browse files Browse the repository at this point in the history
  • Loading branch information
yesteph committed Jan 29, 2024
1 parent 995373b commit 38daaa8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 50 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name: Build Docker images
on:
push:
tags:
- '*' # Push events to matching tags
- "*" # Push events to matching tags

jobs:
docker-api-cart:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

Expand Down Expand Up @@ -46,7 +45,6 @@ jobs:
docker-api-article:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

Expand Down Expand Up @@ -83,15 +81,14 @@ jobs:
docker-front-user:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: alphayax/microservice-demo-frontend-user
images: alphayax/microservice-demo-front-user
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
Expand Down Expand Up @@ -120,19 +117,18 @@ jobs:
docker-front-admin:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: alphayax/microservice-demo-frontend-admin
images: alphayax/microservice-demo-front-admin
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.idea
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/articlealpha.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

7 changes: 3 additions & 4 deletions docker-compose-push.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
version: '3'
version: "3"
services:

mongo:
image: mongo:4

Expand Down Expand Up @@ -28,12 +27,12 @@ services:
front-admin:
build:
context: ./front-admin
image: europe-west1-docker.pkg.dev/wsc-kubernetes-training-0/microservices-demo/frontend-admin:latest
image: europe-west1-docker.pkg.dev/wsc-kubernetes-training-0/microservices-demo/front-admin:latest

front-client:
build:
context: ./front-user
image: europe-west1-docker.pkg.dev/wsc-kubernetes-training-0/microservices-demo/frontend-user:latest
image: europe-west1-docker.pkg.dev/wsc-kubernetes-training-0/microservices-demo/front-user:latest

ingress:
image: nginx:1.19
Expand Down

0 comments on commit 38daaa8

Please sign in to comment.