Permission denied error on pfx certificate in docker ASP.NET Core 8 HTTPS on Ubuntu
I am trying to host a HTTPS Web API in a docker on ubuntu 22.04 VM. I am following the documentation as per : https://learn.microsoft.com/en-us/aspnet/core/security/docker-https?view=aspnetcore-8.0 Here is my docker-compose.yml version: '3.6' services: docker-demo: image: webapi-docker-demo-https-jammy:v3 ports: - 8081:8080 - 8082:8081…