Skip to content

Commit

Permalink
Change images
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWahlin committed Nov 18, 2024
1 parent 45d5a88 commit 12d9e69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .k8s/nginx.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
app: nginx
spec:
containers:
- image: nginx-angular-jumpstart
- image: danwahlin/nginx-angular-jumpstart:latest
imagePullPolicy: IfNotPresent
name: nginx
ports:
Expand Down
2 changes: 1 addition & 1 deletion .k8s/node.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
configMapKeyRef:
key: CONTAINER
name: env-vars
image: node-service-jumpstart
image: danwahlin/node-service-jumpstart:latest
imagePullPolicy: IfNotPresent
name: node-service-jumpstart
ports:
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:

nginx:
container_name: nginx-angular-jumpstart
image: nginx-angular-jumpstart
image: danwahlin/nginx-angular-jumpstart:latest
build:
context: .
dockerfile: .docker/nginx.dockerfile
Expand All @@ -18,10 +18,11 @@ services:
- node
networks:
- app-network
platform: linux/amd64

node:
container_name: node-service-jumpstart
image: node-service-jumpstart
image: danwahlin/node-service-jumpstart:latest
build:
context: .
dockerfile: .docker/node.dockerfile
Expand All @@ -32,6 +33,7 @@ services:
- "8080:8080"
networks:
- app-network
platform: linux/amd64

# Can uncomment to get cAdvisor going on Mac/Linux. Not for Windows though.
# cadvisor:
Expand Down

0 comments on commit 12d9e69

Please sign in to comment.