连接:https://developers.sap.com/tu...html
参考代码:https://github.com/SAP-sample...linux
本地路径:C:\Code\referenceCode\SAP Kyma教程例子git
This sample provides the MS SQL database configured with a sampleDemoDB
database which contains oneOrders
table populated with two rows of sample data.
这个例子展现了如何建立名为 DemoDB 的MSSQL 数据库,以及名为 Orders 的数据库表,以及两行测试数据。github
The app/setup.sql
file handles the generation of the database, table, and data.sql
app 文件夹下的 setup.sql 负责建立数据库,数据库表和测试数据。docker
Within the
app/init-db.sh
file, you can also configure the database user and password.
init-db.sh 文件用于配置数据库用户名和密码。shell
Dockerfile 用于建立 docker 镜像。最后一行命令,执行 app 文件夹下面的 entrypoint.sh 文件。数据库
根据 Dockerfile 构建一个镜像:bash
进入以下文件夹:服务器
C:\Code\referenceCode\SAP Kyma教程例子\database-mssql
执行命令行:
docker build -t i042416/mssql -f docker/Dockerfile .
注意,由于基于的镜像名称为 microsoft/mssql-server-linux, 故这个命令应该在 linux 操做系统里完成:
镜像成功制做完毕:
docker 镜像制做完毕后,上传到 docker hub:
docker push i042416/mssql
上传成功:
本地运行这个镜像:
sudo docker run -e ACCEPT_EULA=Y -e SA_PASSWORD=Yukon900 -p 1433:1433 --name sql1 -d i042416/mssql
进入镜像内部,打开 bash shell:
docker exec -it sql1 "bash"
Start the sqlcmd tool, which allows you to run queries against the database, by running this command: /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P Yukon900
输入以下 query 命令:
1> USE DemoDB 2> SELECT * FROM ORDERS 3> GO
结果:成功读取到两条订单数据:
在 Docker 内部的 /usr/src/app 文件夹下,确实发现了我制做 docker 镜像时的文件:
Microsoft SQL 服务器,安装在 /opt 目录下:
更多Jerry的原创文章,尽在:"汪子熙":