dockerfile update and notes

master
Tudor Stanciu 2020-06-07 14:32:46 +03:00
parent bc04d08969
commit 5503a82241
3 changed files with 41 additions and 2 deletions

View File

@ -27,4 +27,7 @@ COPY --from=publish /app/publish .
ENV urls="http://*:80"
ENV ConnectionStrings__DatabaseConnection="***REMOVED***"
#Workaround to lower the TLS level in container for old sql server version
RUN sed -i 's/TLSv1.2/TLSv1.0/g' /etc/ssl/openssl.cnf
ENTRYPOINT ["dotnet", "Chatbot.Api.dll", "--docker"]

View File

@ -5,7 +5,7 @@
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Default": "Debug",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}

View File

@ -1 +1,37 @@
Basic ***REMOVED***
Basic ***REMOVED***
##############################################################################################
Docker commands:
*****************
Create image:
--from solution folder:
docker image build -t "chatbot-api:1.0.0" -f "Chatbot.Api\Dockerfile" .
Run image:
docker run -p 5053:80 -it chatbot-api:1.0.0
Push image to registry:
--tag image
docker tag chatbot-api:1.0.0 cloud.canister.io:5000/tstanciu/chatbot: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/chatbot:api-1.0.0
Pull image from registry
--login to registry with readonly rights
docker login --username=deploy+tstanciu --password=***REMOVED*** cloud.canister.io:5000
--pull image
docker pull cloud.canister.io:5000/tstanciu/chatbot:api-1.0.0
Run container in prod env
docker run --restart=always -p 5006:80 -d cloud.canister.io:5000/tstanciu/chatbot:api-1.0.0
Rename container
docker rename <containet_id> chatbot-api
##############################################################################################