使用 FTP 连接 Docker 容器
我是 Docker 新手,我正在使用这个 Microsoft SQL Server Docker 映像
sudo docker pull mcr.microsoft.com/mssql/server:2019-latest
我已经使用来自 microsoft doc 的命令在我的 Linux 服务器上运行了容器:
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
-p 1433:1433 --name sql1 --hostname sql1 \
-d mcr.microsoft.com/mssql/server:2019-latest
当我在我的服务器上时,我可以使用 ssh 连接这个命令:
sudo docker exec -it sql1 "bash"
我的问题是我不知道如何使用 FTP 连接到这个容器。
我想在图像上安装 ftp,然后运行类似的命令:
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
-p 1433:1433 -p 21:21 --name sql1 --hostname sql1 \
-d mcr.microsoft.com/mssql/server:2019-latest
但如果不删除图像,我就无法再次运行它。 如果有人能帮助我,我会很高兴。
I'm new to Docker and I'm using this Microsoft SQL Server Docker Image
sudo docker pull mcr.microsoft.com/mssql/server:2019-latest
I've run the container on my linux server with this command which is from the microsoft doc:
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
-p 1433:1433 --name sql1 --hostname sql1 \
-d mcr.microsoft.com/mssql/server:2019-latest
I can connect with ssh when I'm on my server with this command:
sudo docker exec -it sql1 "bash"
My problem is that I can't figure out how I can connect to this container with FTP.
I thought installing ftp on the image and then run with something like:
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
-p 1433:1433 -p 21:21 --name sql1 --hostname sql1 \
-d mcr.microsoft.com/mssql/server:2019-latest
But I can't run it again without removing the image.
I Would be glad if someone could help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有找到获得 FTP 访问权限的方法,但主要目的是能够将文件从主机移动到容器中。
方法很简单,就像 ssh cp
感谢您的回答
I did not found a way to get an FTP Access but the main purpose was to be able to move a file from the host into the container.
The way to do that is as simple as a ssh cp
Thanks for the answers
您不是在编辑图像,而是在编辑使用该命令创建的容器。
只需运行该命令来创建容器并通过 和 使用该容器
,
如果您想在编辑容器后获得容器的映像,请使用
或 so 。 (您可以阅读有关 docker commit 的文档以获取正确的语法。)
更新:
根据下面的评论,我建议您对 docker 文件的使用而不是 docker commit 充满信心。
You are not editing the image but the container that you create with that command.
Just run that command to create your container and use that container via
and
and if you want to have an image of your container after you edited your Container, use the
or so. (You might read the documentation on docker commit for correct syntax.)
UPDATE:
As of the comments below, I'd like to recommend you to get yourself confident with the docker file usage instead of docker commit.