Skip to content

Commit

Permalink
renamed to monitoring-notification-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Max McKelvey authored and Max McKelvey committed Aug 9, 2023
1 parent feec0cc commit 71942af
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-frontend:latest
tags: docker.io/groundlight/monitoring-notification-server-frontend:latest
platforms: linux/amd64,linux/arm64
file: ./frontend.Dockerfile
push: true
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-frontend:armv7-latest
tags: docker.io/groundlight/monitoring-notification-server-frontend:armv7-latest
platforms: linux/arm/v7
file: ./frontend-armv7.Dockerfile
push: true
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-backend:latest
tags: docker.io/groundlight/monitoring-notification-server-backend:latest
platforms: linux/amd64,linux/arm64
file: ./backend.Dockerfile
push: true
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-backend:armv7-latest
tags: docker.io/groundlight/monitoring-notification-server-backend:armv7-latest
platforms: linux/arm/v7
file: ./backend-armv7.Dockerfile
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_building_containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-frontend:latest
tags: docker.io/groundlight/monitoring-notification-server-frontend:latest
platforms: linux/amd64,linux/arm64
file: ./frontend.Dockerfile
push: false
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-frontend:armv7-latest
tags: docker.io/groundlight/monitoring-notification-server-frontend:armv7-latest
platforms: linux/arm/v7
file: ./frontend-armv7.Dockerfile
push: false
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-backend:latest
tags: docker.io/groundlight/monitoring-notification-server-backend:latest
platforms: linux/amd64,linux/arm64
file: ./backend.Dockerfile
push: false
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
tags: docker.io/groundlight/notification-server-example-backend:armv7-latest
tags: docker.io/groundlight/monitoring-notification-server-backend:armv7-latest
platforms: linux/arm/v7
file: ./backend-armv7.Dockerfile
push: false
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ The Notification Server Example has a simple web interface (depected below) that
```yaml
services:
frontend:
image: docker.io/groundlight/notification-server-example-frontend:latest
image: docker.io/groundlight/monitoring-notification-server-frontend:latest
ports:
- "3000:3000"
depends_on:
- backend
backend:
image: docker.io/groundlight/notification-server-example-backend:latest
image: docker.io/groundlight/monitoring-notification-server-backend:latest
ports:
- "8000:8000"
devices:
Expand All @@ -56,13 +56,13 @@ services:
```yaml
services:
frontend:
image: docker.io/groundlight/notification-server-example-frontend:armv7-latest
image: docker.io/groundlight/monitoring-notification-server-frontend:armv7-latest
ports:
- "3000:3000"
depends_on:
- backend
backend:
image: docker.io/groundlight/notification-server-example-backend:armv7-latest
image: docker.io/groundlight/monitoring-notification-server-backend:armv7-latest
ports:
- "8000:8000"
devices:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
services:
frontend:
image: docker.io/groundlight/notification-server-example-frontend:latest
image: docker.io/groundlight/monitoring-notification-server-frontend:latest
ports:
- "3000:3000"
depends_on:
- backend
backend:
image: docker.io/groundlight/notification-server-example-backend:latest
image: docker.io/groundlight/monitoring-notification-server-backend:latest
ports:
- "8000:8000"
devices:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "notification-server-example",
"name": "monitoring-notification-server",
"version": "0.1.0",
"private": true,
"scripts": {
Expand Down

0 comments on commit 71942af

Please sign in to comment.