This is a repo I created to run an (docker) instance of Microsoft SQL Server for testing purposes.
- Requires Docker Engine 1.8, 2GB of hard disk space and 2GB of RAM (1)
- Pull the repo
- Edit the docker-compose.yaml file to change the default SA_PASSWORD value,
YourSecretPa$$W0rD
- Make the pre-init.sh script executable,
chmod +x pre-init.sh
- Run the pre-init.sh script to download the backup file(s),
./pre-init.sh
- Run
docker-compose up
in the local directory to create and spin up the container. Assuming there are no errors, and you seeexited with code 0
you can re-rundocker-compose up -d
to start the container silently.