https://github.com/paritosh64ce/mssql-compose
https://github.com/paritosh64ce/mssql-compose
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paritosh64ce/mssql-compose
- Owner: paritosh64ce
- License: mit
- Created: 2022-12-03T19:07:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-03T19:07:22.000Z (over 3 years ago)
- Last Synced: 2025-05-21T14:38:26.247Z (about 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- Build using
> docker-compose up -d
- Once up, connect using
> docker exec -it sql-server-db "bash"
- It will show prompt like below
> mssql@391c99005fef:/$
> /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P strong_password
> USE eCart
> GO
> SELECT * FROM Category
> GO
> INSERT INTO Category VALUES ('Bag', NULL)
> EXIT
> mssql@391c99005fef:/$ exit