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