Sign inSign up

jaschweder/mssql

By jaschweder

Updated about 8 years ago

This alternative of MSSQL has some common parameters in development, have fun :)

Image
0

476

jaschweder/mssql repository overview

MSSQL Docker image

This image use the same params pattern has others databases like mysql and postgresql

Docker Pulls

Environment

MSSQL_DATABASE

set database name

MSSQL_USER

user to be created on database boot

MSSQL_PASSWORD

password for the MSSQL_USER

MSSQL_SA_PASSWORD

password for the sa user

How to use this image

Most simple use:
docker run \
    -e MSSQL_DATABASE=my_db \
    -e MSSQL_USER=my_user \
    -e MSSQL_PASSWORD=my_password \
    jaschweder/mssql
Using with Docker Compose
version: '2'

services:
  web:
    ...
    environment:
      - DB_HOST=db
      - DB_NAME=my_database
      - DB_USER=my_user
      - DB_PASSWORD=my_password
  db:
    image: jaschweder/mssql
    environment:
      - MSSQL_DATABASE=my_database
      - MSSQL_USER=my_user
      - MSSQL_PASSWORD=my_password

How to contribute

You are welcome, go to the repository on Github

Bugs

Found a bug or some secure problem ? please, open an issue or send a e-mail to the author

Author

Created and maintained by Jonathan A. Schweder [email protected]`

Tag summary

Content type

Image

Digest

Size

457 MB

Last updated

about 8 years ago

docker pull jaschweder/mssql