Skip to content

Commit

Permalink
Correct docker image names
Browse files Browse the repository at this point in the history
  • Loading branch information
badass-techie committed Oct 15, 2023
1 parent 5d8d560 commit 432cc06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Check Out Code
uses: actions/checkout@v3

- name: Copy env.example files to dummy .env (required for docker compose)
- name: Create dummy .env files (required for docker compose)
run: |
touch ./ApiGateway/.env
touch ./Cart/.env
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
context: .
dockerfile: Dockerfile
target: discovery-server
image: eshoponsteroids/discovery-server
image: badasstechie/eshoponsteroids-discovery-server
restart: on-failure
env_file:
- ./DiscoveryServer/.env
Expand All @@ -25,7 +25,7 @@ services:
context: .
dockerfile: Dockerfile
target: api-gateway
image: eshoponsteroids/api-gateway
image: badasstechie/eshoponsteroids-api-gateway
restart: on-failure
ports:
- 8080:8080
Expand All @@ -50,7 +50,7 @@ services:
context: .
dockerfile: Dockerfile
target: cart
image: eshoponsteroids/cart
image: badasstechie/eshoponsteroids-cart
restart: on-failure
env_file:
- ./Cart/.env
Expand All @@ -77,7 +77,7 @@ services:
context: .
dockerfile: Dockerfile
target: identity
image: eshoponsteroids/identity
image: badasstechie/eshoponsteroids-identity
restart: on-failure
env_file:
- ./Identity/.env
Expand All @@ -104,7 +104,7 @@ services:
context: .
dockerfile: Dockerfile
target: order
image: eshoponsteroids/order
image: badasstechie/eshoponsteroids-order
restart: on-failure
env_file:
- ./Order/.env
Expand All @@ -128,7 +128,7 @@ services:
context: .
dockerfile: Dockerfile
target: product
image: eshoponsteroids/product
image: badasstechie/eshoponsteroids-product
restart: on-failure
env_file:
- ./Product/.env
Expand Down

0 comments on commit 432cc06

Please sign in to comment.