Resetting SA Password in MSSQL Server Docker 2022
This was a bit tricky, so I thought I would share how this can actually be done. I found this difficult for several reasons. For one, SQL Server must be stopped for the script to work, because this is a container, it is not using systemctl, therefore terminating the SQL Server using...
Docker Tips & Tricks
These are some useful random tricks I've learned about Docker over the years.
Getting Shell Access to a Running Container
docker exec -it containername /bin/bash
Remove All Running Containers
This command works by removing all running containers with force. The command "docker ps -aq" returns all running containers and only displays the container ID.
docker rm -f $(docker ps -aq)
Copying Files...
Microservice Toolbox (MBOX)
I designed this for testing and building microservices. This Alpine Docker image is packed full of tools for interacting with containers, service meshes, Kafka, and other application development needs. Being that I'm a .NET developer this is geared towards tools that align with that however, pull requests are welcomed!
WARNING: This is a work in progress. I'll be...