Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rgl/sql-server-docker-playground
This is a SQL Server Docker playground
https://github.com/rgl/sql-server-docker-playground
debian docker docker-compose example sql-server
Last synced: 26 days ago
JSON representation
This is a SQL Server Docker playground
- Host: GitHub
- URL: https://github.com/rgl/sql-server-docker-playground
- Owner: rgl
- Created: 2024-07-16T06:37:56.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-20T05:34:44.000Z (4 months ago)
- Last Synced: 2024-09-29T14:03:02.695Z (about 1 month ago)
- Topics: debian, docker, docker-compose, example, sql-server
- Language: Dockerfile
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This is a SQL Server Docker playground.
Also see the SQL Server Windows playground at https://github.com/rgl/sql-server-vagrant.
# Usage
Install `docker` and `docker compose`.
Create the environment:
```bash
docker compose up --build --remove-orphans
```In another shell, see the logs:
```bash
docker compose logs sql-server-init
docker compose logs dotnet-client
docker compose logs go-client
docker compose logs java-client
docker compose logs python-client
```Destroy the environment:
```bash
docker compose down --volumes --remove-orphans --timeout=0
```# Reference
* https://github.com/microsoft/mssql-docker
* https://hub.docker.com/r/microsoft/mssql-server
* [TDS 8.0 and TLS 1.3 support](https://learn.microsoft.com/en-us/sql/relational-databases/security/networking/tds-8-and-tls-1-3?view=sql-server-ver16)