Sign inSign up

rsmoorthy/sql2000

By rsmoorthy

Updated about 11 years ago

Provides MSSQL 2000 (Microsoft SQL Server 2000 Desktop Engine (MSDE 2000) Release A)

Image
5

3.9K

rsmoorthy/sql2000 repository overview

Provides MSSQL 2000 (Microsoft SQL Server 2000 Desktop Engine (MSDE 2000) Release A).

If you want to run MSSQL 2000 as a database server, ONLY using the 1433 port, you can make use of this docker image. Database Service is available on port 1433, user sa, empty password.

This runs on top of rsmoorthy/wine-alpine, a minimal Wine installation on top of alpine 32bit. Credits for setting up MSSQL 2000 on top of Wine goes to https://appdb.winehq.org/objectManager.php?sClass=version&iId=11016

To use this,

docker run --name mssql -p 1433:1433 -d rsmoorthy/sql2000

From any of the clients, connect to the service on the port 1433, user is "sa" and empty password

To test from a php5 client, you can run this:

docker run --rm -it --link mssql:mssql rsmoorthy/php5-mssql php /root/test.php

which displays

Array
(
    [0] => Array
        (
            [id] => 1
            [0] => 1
            [name] => hello world
            [1] => hello world
        )

)

For Building and creating this image, please see this link https://github.com/rsmoorthy/docker/blob/master/sql2000/how_installed.md

Dockerfile at https://github.com/rsmoorthy/docker/blob/master/sql2000/Dockerfile

Tag summary

Content type

Image

Digest

sha256:76cdc3867

Size

88.8 MB

Last updated

about 11 years ago

docker pull rsmoorthy/sql2000