linux怎么查看本机内存大小
233
2022-10-22
在 Docker 里运行 Microsoft SQL 服务器
链接:Kyma教程例子
This sample provides the MS SQL database configured with a sample DemoDB database which contains one Orders table populated with two rows of sample data.
这个例子展示了如何创建名为 DemoDB 的MSSQL 数据库,以及名为 Orders 的数据库表,以及两行测试数据。
The app/setup.sql file handles the generation of the database, table, and data.
app 文件夹下的 setup.sql 负责创建数据库,数据库表和测试数据。
Within the app/init-db.sh file, you can also configure the database user and password.
init-db.sh 文件用于配置数据库用户名和密码。
docker 文件夹
FROM:The FROM instruction initializes a new build stage and sets the Base Image for subsequent instructions. As such, a valid Dockerfile must start with a FROM instruction. The image can be any valid image – it is especially easy to start by pulling an image from the Public Repositories.
Dockerfile 用于创建 docker 镜像。最后一行命令,执行 app 文件夹下面的 entrypoint.sh 文件。
Build the Docker image
根据 Dockerfile 构建一个镜像:
进入如下文件夹:
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 DemoDB2> SELECT * FROM ORDERS3> GO
结果:成功读取到两条订单数据:
在 Docker 内部的 /usr/src/app 文件夹下,确实发现了我制作 docker 镜像时的文件:
Microsoft SQL 服务器,安装在 /opt 目录下:
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~