Docker Azure Web Apps - SSH access for Custom Containers For most "smaller" projects I use Azure Web Apps for hosting. It just takes care of all the work of hosting sites, APIs, and Apps in a PaaS manor, so I don't have to worry about it.
account Changing A Windows 10 User Account Name (Profile) and Folder Path (It didn't work) This is a very short post on something I posted a few days ago re: trying to change the name and path of an account after it has been created on Windows 10. Sadly it didn't work out, so I resorted to plan B.
ASP.Net Core Custom Docker Containers in your Azure Web App - Part 2 Part 1 of this services, contains the details you need to create a Docker Image and Container locally to verify it's all working as you expect. Then build, tag, push it to a provisioned Docker Registry manually for use elsewhere.
Azure App Service Featured Custom Docker Containers on Azure Web Apps - Part 1 Over the last few months, we've moved all our sites to Custom Docker Containers deployed on Azure Web Apps. This gives us a lot of flexibility in testing and deployment. In this series
Docker Can't copy a file to a Docker image Docker is so big in the tech world lately and Node apps too. I've been working with both a lot more. The current project entailed putting a Node app into a Docker Image. In fact it was Ghost Blog [https://github.com/TryGhost/Ghost]. With Docker to really
Docker Featured Docker Foo - Docker Magic Commands Get the IP Address of the docker container: docker inspect -f "{{ .NetworkSettings.Networks.nat.IPAddress }}" [container name] Run a commandline app from the docker container: docker exec [container name] [command to run] Attach the current terminal to the docker container terminal: docker exec -it [container name] [command to