-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Carlos Robles
authored
May 12, 2020
1 parent
9bcb617
commit 710abfd
Showing
1 changed file
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
# mssql-tools-alpine | ||
A mssql-tools image alternative using Alpine | ||
# MSSQL Tools with Alpine | ||
|
||
Looking for a minimalistic SQLCMD (mssql-tools) container image? ```mssql-tools-alpine``` is definitively a very good alternative. | ||
|
||
This image size is ~17 MB, providing you the portability and agility you need to run queries on the fly. | ||
|
||
## Examples | ||
|
||
### Image build | ||
```docker | ||
docker build . -t mssql-tools-alpine | ||
```` | ||
### Checking SQLCMD help | ||
```docker | ||
docker container run --rm -it mssql-tools-alpine sqlcmd -? | ||
``` | ||
|
||
### Using SQLCMD through local network | ||
```docker | ||
docker container run -it --network host mssql-alpine sqlcmd -S localhost,1500 -U sa -P '_SqLr0ck$_' | ||
``` | ||
|
||
## Questions? | ||
If you have questions or comments about this demo, don't hesitate to contact me at <[email protected]> | ||
|
||
## Follow me | ||
[![N|Solid](http://dbamastery.com/wp-content/uploads/2018/08/if_twitter_circle_color_107170.png)](https://twitter.com/dbamastery) [![N|Solid](http://dbamastery.com/wp-content/uploads/2018/08/if_github_circle_black_107161.png)](https://github.com/dbamaster) [![N|Solid](http://dbamastery.com/wp-content/uploads/2018/08/if_linkedin_circle_color_107178.png)](https://www.linkedin.com/in/croblesdba/) [![N|Solid](http://dbamastery.com/wp-content/uploads/2018/08/if_browser_1055104.png)](http://dbamastery.com/) |