Skip to content

Commit

Permalink
Update docker image names
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoutsilis committed Apr 5, 2024
1 parent 54a8289 commit c413c07
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd auth && docker build -t kkoutsilis/auth .
- run: cd auth && docker build -t kkoutsilis/tixmix-auth .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/auth
- run: docker push kkoutsilis/tixmix-auth
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd client && docker build -t kkoutsilis/client .
- run: cd client && docker build -t kkoutsilis/tixmix-client .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/client
- run: docker push kkoutsilis/tixmix-client
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-expiration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd expiration && docker build -t kkoutsilis/expiration .
- run: cd expiration && docker build -t kkoutsilis/tixmix-expiration .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/expiration
- run: docker push kkoutsilis/tixmix-expiration
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-orders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd orders && docker build -t kkoutsilis/orders .
- run: cd orders && docker build -t kkoutsilis/tixmix-orders .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/orders
- run: docker push kkoutsilis/tixmix-orders
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-payments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd payments && docker build -t kkoutsilis/payments .
- run: cd payments && docker build -t kkoutsilis/tixmix-payments .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/payments
- run: docker push kkoutsilis/tixmix-payments
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-tickets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd tickets && docker build -t kkoutsilis/tickets .
- run: cd tickets && docker build -t kkoutsilis/tixmix-tickets .
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: docker push kkoutsilis/tickets
- run: docker push kkoutsilis/tixmix-tickets
- uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/auth-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: auth
image: kkoutsilis/auth
image: kkoutsilis/tixmix-auth
env:
- name: MONGO_URI
value: "mongodb://auth-mongo-srv:27017/auth"
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/client-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: client
image: kkoutsilis/client
image: kkoutsilis/tixmix-client
env:
- name: APP_ENV
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/expiration-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: expiration
image: kkoutsilis/expiration
image: kkoutsilis/tixmix-expiration
env:
- name: NATS_CLIENT_ID
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/mail-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: mail
image: kkoutsilis/tixmix-mail-service
image: kkoutsilis/tixmix-mail
env:
- name: NATS_CLIENT_ID
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/orders-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: orders
image: kkoutsilis/orders
image: kkoutsilis/tixmix-orders
env:
- name: NATS_CLIENT_ID
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/payments-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: payments
image: kkoutsilis/payments
image: kkoutsilis/tixmix-payments
env:
- name: NATS_CLIENT_ID
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/tickets-depl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: tickets
image: kkoutsilis/tickets
image: kkoutsilis/tixmix-tickets
env:
- name: NATS_CLIENT_ID
valueFrom:
Expand Down
14 changes: 7 additions & 7 deletions skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,55 +9,55 @@ build:
local:
push: false
artifacts:
- image: kkoutsilis/auth
- image: kkoutsilis/tixmix-auth
context: auth
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: kkoutsilis/client
- image: kkoutsilis/tixmix-client
context: client
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "**/*.js"
dest: .
- image: kkoutsilis/tickets
- image: kkoutsilis/tixmix-tickets
context: tickets
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: kkoutsilis/orders
- image: kkoutsilis/tixmix-orders
context: orders
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: kkoutsilis/expiration
- image: kkoutsilis/tixmix-expiration
context: expiration
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: kkoutsilis/payments
- image: kkoutsilis/tixmix-payments
context: payments
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: kkoutsilis/tixmix-mail-service
- image: kkoutsilis/tixmix-mail
context: mail
docker:
dockerfile: Dockerfile
Expand Down

0 comments on commit c413c07

Please sign in to comment.