问题标签 [kitematic]
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.
docker - Kitematic(Docker)中的“下次重启时使用 VirtualBox 而不是 Native”有什么作用?
在 Kitematic 中点击底部选项卡右侧的链轮时有一个设置。它究竟是做什么的?Native 和 VirtualBox 有什么区别?
node.js - 为什么 VirtualBox 地址与容器地址不匹配?
我制作了一个 Node 应用程序并将其部署在 Docker 容器中。然后我用来ipconfig
获取 VirtualBox 网络的地址 ( 192.168.99.1
)。我能够在浏览器中查看此地址的应用程序。然后我对应用程序进行了一些更改并使用新图像重新启动了容器,但它不起作用。我恢复了更改并再次重新部署,但它仍然无法正常工作。
我做了一些谷歌搜索,发现了 Kitematic 并用它来确定该应用程序位于192.168.99.100
. 第一次使用 VirtualBox IP 地址但第二次不行是怎么回事?
wordpress - 带有测试电子邮件环境的 Wordpress docker 容器
是否有任何简单的方法可以使用带有环境的 docker 运行 Wordpress 来测试邮件?
我有一个运行WordPress和MariaDB的容器,我正在尝试将它连接到MailDev或类似环境以进行邮件测试。
我已经在 WordPress 容器中安装了 sendmail
我正在使用插件WP Mail SMTP,我在其中设置了“其他 SMTP”选项。该插件会通知您邮件已发送,但 MailDev 中没有显示任何内容。
有什么解决方案可以在本地测试电子邮件吗?
docker - Cannot not restart a docker container with existing mounted host directory
I pulled a nginx+php container (https://hub.docker.com/r/imagine10255/centos6-lnmp-php56/) and had started that, it will create a folder to specific location i.e.(D:\xampp\htdocs\centos6-lnmp-php56\home\website), but now i can't restart it, anyone know how to do restart it with out deleting the folder above ?
error message is here:
command tried:
Error response from daemon: Cannot restart container centos6-lnmp-php56: error while creating mount source path '/c/Users/hkveg/Documents/Kitematic/centos6-lnmp-php56/home/website': mkdir /c/Users/hkveg/Documents/Kitematic/centos6-lnmp-php56: file exists
As same as mysql container:
$ docker restart mysql
Error response from daemon: Cannot restart container mysql: error while creating mount source path '/c/Users/hkveg/Documents/Kitematic/mysql/var/lib/mysql': mkdir /c/Users/hkveg/Documents/Kitematic/mysql: file exists
java - docker容器内的Spring启动抛出java.net.ConnectException:连接被拒绝(连接被拒绝)
客户端应用程序将数据发送到 localhost:8080 上的服务器,该json
服务器已打包并作为 docker 映像运行。使用 Postman chrome 应用手动发送 json 时,服务器工作正常。问题在于尝试写入 using 时抛出的dockerized客户端。如何让它发挥作用?java.net.ConnectException: Connection refused (Connection refused)
json
HttpURLConnection
OutputStreamWriter
Dockerfile:
macos - Docker for Mac 不转发端口
我正在尝试在我的 Mac (HighSierra) 上启动 elasticsearch 2.4.6。
使用:Docker Kitematic 0.17.2,Docker for Mac 18.06.1
在我下载并在容器中运行选定的图像后,我有
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
dc5e1f90ce24 elasticsearch:2.4.6 "/docker-entrypoint.…" 13 hours ago Up 3 minutes 0.0.0.0:32782->9200/tcp, 0.0.0.0:32781->9300/tcp elasticsearch
但无法通过 9200、9300 联系 Elastic
curl 'http://localhost:9200/?pretty'
curl: (7) Failed to connect to localhost port 9200: Connection refused
curl 'http://0.0.0.0:9200/?pretty'
curl: (7) Failed to connect to 0.0.0.0 port 9200: Connection refused
0.0.0.0 不应该可用吗?
docker - 有没有办法找到 Kitematic 在与 docker 交互时使用的等效命令行调用?
我是 docker 新手,正在使用 docker for windows。我还使用 Kitematic 来提取存储库映像、配置容器、启动、重新启动、设置端口等。
有没有办法准确找出 Kitematic 发送给 docker 的命令,以便我了解它在做什么?
docker - 在 Kitematic (Docker for Mac) 中更改了 SA 密码,我丢失了 localhost 中的所有数据库
我已经更改了 Kitematic (Docker for Mac) 中的 SA 密码。当我重新登录 Azure Data Studio 时,我发现我的所有数据库都已消失。
无论是在 Kitematic 中还是通过终端命令更改 SA 密码时,数据库是否都会永远丢失?
感谢您对此查询的支持和回答。
最好的,A.
docker - 自动将主机 IP 设置为 docker 中的环境属性
我在公司的 dhcp 网络中,并且 ip 经常更改。在我的笔记本电脑上运行一个 docker 容器时,我必须传递我机器的本地 ip 以允许回调到不同的应用程序。
我现在正在使用 -e MYHOST=xxxx 运行容器但是当 IP 更改时,我必须手动查找 ip 并编辑此属性并重新启动我的容器。
我使用 Kitematic 启动。有没有办法可以将其配置为自动获取主机IP。类似 -e MYHOST=${hostIP}