Instructions for Docker Local Development Build docker build -t twitch-follows . Creating a Developer Certificate (PowerShell) If you already have an exported .pfx, you can skip to step X. Remove your existing developer certificate(s). dotnet dev-certs https --clean Create, trust, and export your new developer certificate. dotnet dev-certs https --trust --export-path $env:USERPROFILE/.aspnet/https/aspnetapp.pfx -p <SECRETPASSWORD> Running Setup your environment variables. Copy .env-sample to .env and edit the file to add your values. Run the Docker container. docker run -it --rm -p 5000:80 -p 5001:443 ` --volume C:\Users\nullforce\.aspnet\https:/https/ ` --env-file .env ` --name twitch-follows ` twitch-follows