From 53798683957b6e15178b3bab5daea0e79d26af7e Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Fri, 25 Dec 2020 02:59:02 +0200 Subject: [PATCH] notes update --- IdentityServer.Api/IdentityServer.Api.csproj | 1 - Notes.txt | 23 +++++++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/IdentityServer.Api/IdentityServer.Api.csproj b/IdentityServer.Api/IdentityServer.Api.csproj index f58b3c2..c0c58e8 100644 --- a/IdentityServer.Api/IdentityServer.Api.csproj +++ b/IdentityServer.Api/IdentityServer.Api.csproj @@ -18,7 +18,6 @@ - diff --git a/Notes.txt b/Notes.txt index 5147749..e8757a9 100644 --- a/Notes.txt +++ b/Notes.txt @@ -16,20 +16,41 @@ dotnet nuget push IdentityServer.Wrapper.1.0.1.nupkg -k ***REMOVED*** -s http:// TO DO: - Cache for users +####################################################################################################################################################### +Azure DevOps Repository Password: ***REMOVED*** ####################################################################################################################################################### Docker commands: ***************** Create image: --from solution folder: -docker image build -t "identity-server-api:1.0.0" -f "Chatbot.Api/Dockerfile" .docker +docker image build -t "identity-server-api:1.0.0" -f "IdentityServer.Api/Dockerfile" . +Run image: +docker run -p 5053:80 -it identity-server-api:1.0.0 +Push image to registry: +--tag image +docker tag identity-server-api:1.0.0 cloud.canister.io:5000/tstanciu/identity-server:api-1.0.0 +--login to registry +docker login --username=tstanciu --password="***REMOVED***" cloud.canister.io:5000 +--push image +docker push cloud.canister.io:5000/tstanciu/identity-server:api-1.0.0 +Pull image from registry +--login to registry with readonly rights +docker login --username=***REMOVED*** --password=***REMOVED*** cloud.canister.io:5000 +--pull image +docker pull cloud.canister.io:5000/tstanciu/identity-server:api-1.0.0 +Run container in prod env +docker run --restart=always -p 5007:80 -d cloud.canister.io:5000/tstanciu/identity-server:api-1.0.0 + +Rename container +docker rename identity-server-api ####################################################################################################################################################### Docker container last version: 1.0.0