问题标签 [docker]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
windows - Docker.io for Windows
I was reading a nice question about docker - answer has overview of docker implementation details. I was wondering if anything like this is possible to do on Windows platform.
- Do Windows alternatives for Docker exist?
- Is it theoretically possible to use other (Windows based) components to build it?
Update1:
- Slightly related question (sandboxing): Is there a lightweight, programmable Sandbox API for the Windows platform?
Update2::
For info how to install docker on windows (unrelated) - official docs has great instructions how to set up the environment by using boot2docker VM.
performance - 为什么容器网络吞吐量低
我使用 Docker 创建了几个容器,并通过 Netperf 测量了网络性能。然而,吞吐量结果相当低,约为 563.81 Mb/s。2个容器/进程之间的通信不是通过主存完成的吗?有谁知道为什么我的吞吐量这么低。我需要特定的配置吗?
谢谢, 根克
linux - 如何在不停止的情况下在 Docker 容器中运行 Nginx?
我在 Docker 容器上安装了 Nginx,并尝试像这样运行它:
问题在于 Nginx 的工作方式是初始进程立即生成一个主 Nginx 进程和一些工作人员,然后退出。由于 Docker 只监视原始命令的 PID,因此容器会停止。
如何防止容器停止?我需要能够告诉它绑定到第一个子进程,或者阻止 Nginx 的初始进程退出。
docker - 在 docker 容器上安装多个卷?
我知道我可以使用类似的东西在我的容器上的主机中挂载一个目录
有没有办法创建多个主机-容器对?例如逗号分隔的列表,或传入一个数组?
docker - 我可以指定要从 Dockerfile 挂载的主机目录吗
Docker 运行命令可以选择将主机目录挂载到容器中
并且 Dockerfile 有VOLUME
指令
据我host-dir
所知,使用 Dockerfile 时无法指定或 rw/ro 状态。
除了想与其他容器共享之外,docker 文件中是否还有其他用途?
nfs - Docker: How to live sync host folder with container folder?
I am working on a website powered by Node. So I have made a simple Dockerfile that adds my site's files to the container's FS, installs Node and runs the app when I run the container, exposing the private port 80.
But if I want to change a file for that app, I have rebuild the container image and re-run it. That takes some seconds.
Is there an easy way to have some sort of "live sync", NFS like, to have my host system's app files be in sync with the ones from the running container?
This way I only have to relaunch it to have changes apply, or even better, if I use something like supervisor
, it will be done automatically.
ruby-on-rails - 将 rbenv 与 Docker 一起使用
我正在尝试使用 Dockerfile 设置 rbenv,但这只是在rbenv install
. 我确实有 ruby-build 在那里,它似乎不起作用。
Dockerfile 的相关部分(主要来自https://gist.github.com/deepak/5925003):
错误:
linux - 提取 Docker.io 映像的根文件系统并在 chroot 中使用它是否安全?
我最近发现了 Docker,我认为它是管理我的运行时环境的好工具。但是,我也有一些不支持 LXC 的 OpenVZ VPS,所以我正在考虑使用docker export
导出图像的文件系统,将生成的 tarball 解压缩到 VPS 中的目录,然后 chroot 进入该目录并运行镜像内的服务。
这样做安全吗?Docker 对其映像的文件系统进行了哪些自定义(我可以.dockerinit
第一眼看到根目录中的文件)?这种方法的任何提示和陷阱?
docker - 安装时 Docker 上的 404 页面
用于在 ubuntu 上安装的 docker 页面返回 404 ?
获取.docker.io/ubuntu
有谁知道解决这个问题?
谢谢
docker - 为什么我的卷是空的?
这是一个问题,当我尝试使用我的 Dockerfile 构建图像时:
如果我尝试构建映像后: docker run -i -t image_id /bin/bash
我的 /var/lib/postgresql 现在是空的!
Docker 卷没有太多文档,所以我真的很困惑发生了什么。