This alternative of MSSQL has some common parameters in development, have fun :)
476
This image use the same params pattern has others databases like
mysqlandpostgresql
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
sauser
docker run \
-e MSSQL_DATABASE=my_db \
-e MSSQL_USER=my_user \
-e MSSQL_PASSWORD=my_password \
jaschweder/mssql
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
You are welcome, go to the repository on Github
Found a bug or some secure problem ? please, open an issue or send a e-mail to the author
Created and maintained by Jonathan A. Schweder [email protected]`
Content type
Image
Digest
Size
457 MB
Last updated
about 8 years ago
docker pull jaschweder/mssql