龙空技术网

常用的docker镜像

软件架构 927

前言:

此时咱们对“docker window镜像”大致比较注意,各位老铁们都想要知道一些“docker window镜像”的相关资讯。那么小编同时在网络上收集了一些对于“docker window镜像””的相关内容,希望我们能喜欢,同学们快快来了解一下吧!

下面是一些常用的docker镜像。1. Web 应用 - 显示Container ID

ninghao/node

ninghao/node:hola

Github:

2. Docker Remote API

jarkt/docker-remote-api

Makes the Docker Remote API available via port 2375.

Makes the Docker Remote API available via port 2375.

Start with:

docker run -d -p 80:2375 -v /var/run/docker.sock:/var/run/docker.sock jarkt/docker-remote-api

在Linux Docker 环境,执行上述命令。

然后,在Windows Docker 环境,就可以远程访问 Docker Remote API 了。

1. 通过 HTTP 80 端口访问:

2. 通过Docker 命令行访问:

docker -H tcp://192.168.56.101:80 ps

docker -H tcp://192.168.56.101:80 version

3. radial/busyboxplus:curl 镜像

Available via docker pull radial/busyboxplus:curl. In addition to the base image, the cURL image adds:

Curl (7.35.0)/libcurl (7.35.0), built with OpenSSL (1.0.1f, includes ca-certificates), zlib (1.2.8), and Libssh2 (1.4.3)

Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp

scp sftp smtp smtps telnet tftpFeatures: IPv6 Largefile NTLM SSL libz TLS-SRP

This image was created as an alternate for those only needing to use cURL to extract their configuration in their Hub containers.

标签: #docker window镜像