常用的docker镜像

下面是一些常用的docker镜像。

1. Web 应用 - 显示Container ID

ninghao/node

ninghao/node:hola

https://hub.docker.com/r/ninghao/node/

Github:

https://github.com/ninghao/docker-node

常用的docker镜像


2. Docker Remote API

jarkt/docker-remote-api

https://hub.docker.com/r/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 端口访问:

  • http://192.168.56.101/info
  • http://192.168.56.101/images/json
  • http://192.168.56.101/images/json

2. 通过Docker 命令行访问:

docker -H tcp://192.168.56.101:80 ps

docker -H tcp://192.168.56.101:80 version

常用的docker镜像

3. radial/busyboxplus:curl 镜像

常用的docker镜像

https://hub.docker.com/r/radial/busyboxplus/

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.

相关推荐