Skip to content

Commit 745a603

Browse files
authored
Update Docker registry (#5203)
* Update image * Update registry
1 parent 157a8cb commit 745a603

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/samples.07.a.upload-to-azure-storage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
env:
1212
APP_NAME: webchat-samples-uploadazurestorage
13-
DOCKER_IMAGE: webchatsamples.azurecr.io/webchat-samples-uploadazurestorage
14-
DOCKER_REGISTRY: webchatsamples.azurecr.io
13+
# DOCKER_IMAGE: your-own-registry.azurecr.io/webchat-samples-uploadazurestorage
14+
# DOCKER_REGISTRY: your-own-registry.azurecr.io
1515
DOCKER_TAG: sha-${{ github.sha }}
1616
DOCKERFILE_PATH: samples/07.advanced-web-chat-apps/a.upload-to-azure-storage
1717
PUBLISH_PROFILE: ${{ secrets.SAMPLES_UPLOADAZURESTORAGE_PUBLISH_PROFILE }}

.github/workflows/samples.07.b.sso-for-enterprise.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
env:
1212
APP_NAME: webchat-samples-ssoenterprise
13-
DOCKER_IMAGE: webchatsamples.azurecr.io/webchat-samples-ssoenterprise
14-
DOCKER_REGISTRY: webchatsamples.azurecr.io
13+
# DOCKER_IMAGE: your-own-registry.azurecr.io/webchat-samples-ssoenterprise
14+
# DOCKER_REGISTRY: your-own-registry.azurecr.io
1515
DOCKER_TAG: sha-${{ github.sha }}
1616
DOCKERFILE_PATH: samples/07.advanced-web-chat-apps/b.sso-for-enterprise
1717
PUBLISH_PROFILE: ${{ secrets.SAMPLES_SSOENTERPRISE_PUBLISH_PROFILE }}

.github/workflows/samples.07.c.sso-for-intranet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
env:
1212
APP_NAME: webchat-samples-ssointranet
13-
DOCKER_IMAGE: webchatsamples.azurecr.io/webchat-samples-ssointranet
14-
DOCKER_REGISTRY: webchatsamples.azurecr.io
13+
# DOCKER_IMAGE: your-own-registry.azurecr.io/webchat-samples-ssointranet
14+
# DOCKER_REGISTRY: your-own-registry.azurecr.io
1515
DOCKER_TAG: sha-${{ github.sha }}
1616
DOCKERFILE_PATH: samples/07.advanced-web-chat-apps/c.sso-for-intranet
1717
PUBLISH_PROFILE: ${{ secrets.SAMPLES_SSOINTRANET_PUBLISH_PROFILE }}

.github/workflows/samples.07.d.sso-for-teams.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
env:
1212
APP_NAME: webchat-samples-ssoteams
13-
DOCKER_IMAGE: webchatsamples.azurecr.io/webchat-samples-ssoteams
14-
DOCKER_REGISTRY: webchatsamples.azurecr.io
13+
# DOCKER_IMAGE: your-own-registry.azurecr.io/webchat-samples-ssoteams
14+
# DOCKER_REGISTRY: your-own-registry.azurecr.io
1515
DOCKER_TAG: sha-${{ github.sha }}
1616
DOCKERFILE_PATH: samples/07.advanced-web-chat-apps/d.sso-for-teams
1717
PUBLISH_PROFILE: ${{ secrets.SAMPLES_SSOTEAMS_PUBLISH_PROFILE }}

samples/07.advanced-web-chat-apps/b.sso-for-enterprise/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ services:
55
context: .
66
dockerfile: Dockerfile-bot
77
env_file: ./bot/.env
8-
image: webchat.azurecr.io/webchat-sso-bot
8+
# image: your-own-registry.azurecr.io/webchat-sso-bot
99
web:
1010
build:
1111
context: .
1212
dockerfile: Dockerfile-web
1313
env_file: ./rest-api/.env
14-
image: webchat.azurecr.io/webchat-sso-web
14+
# image: your-own-registry.azurecr.io/webchat-sso-web
1515
ports:
1616
- "3000:5000"

samples/07.advanced-web-chat-apps/c.sso-for-intranet/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ services:
55
context: .
66
dockerfile: Dockerfile-bot
77
env_file: ./bot/.env
8-
image: webchat.azurecr.io/webchat-sso-intranet-bot
8+
# image: your-own-registry.azurecr.io/webchat-sso-intranet-bot
99
web:
1010
build:
1111
context: .
1212
dockerfile: Dockerfile-web
1313
env_file: ./web/.env
14-
image: webchat.azurecr.io/webchat-sso-intranet-web
14+
# image: your-own-registry.azurecr.io/webchat-sso-intranet-web
1515
ports:
1616
- "3000:5000"

samples/07.advanced-web-chat-apps/d.sso-for-teams/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ services:
55
context: .
66
dockerfile: Dockerfile-bot
77
env_file: ./bot/.env
8-
image: webchat.azurecr.io/webchat-sso-teams-bot
8+
# image: your-own-registry.azurecr.io/webchat-sso-teams-bot
99
web:
1010
build:
1111
context: .
1212
dockerfile: Dockerfile-web
1313
env_file: ./web/.env
14-
image: webchat.azurecr.io/webchat-sso-teams-web
14+
# image: your-own-registry.azurecr.io/webchat-sso-teams-web
1515
ports:
1616
- "3000:5000"

samples/07.advanced-web-chat-apps/e.sso-on-behalf-of-authentication/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ services:
55
context: .
66
dockerfile: Dockerfile-bot
77
env_file: ./bot/.env
8-
image: webchat.azurecr.io/webchat-sso-bot
8+
# image: your-own-registry.azurecr.io/webchat-sso-bot
99
web:
1010
build:
1111
context: .
1212
dockerfile: Dockerfile-web
1313
env_file: ./rest-api/.env
14-
image: webchat.azurecr.io/webchat-sso-web
14+
# image: your-own-registry.azurecr.io/webchat-sso-web
1515
ports:
1616
- "3000:5000"

0 commit comments

Comments
 (0)