VERSION

Docker 安装 Tomcat

Docker 安装 Tomcat 方法一、docker pull tomcat 查找 Docker Hub 上的 tomcat 镜像: docker search tomcat 这里我们拉取官方最新版本的 tomcat 镜像: docker pull tomcat 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 tomcat...

Docker 安装 Python

Docker 安装 Python 方法一、docker pull python:3.5 查找 Docker Hub 上的 python 镜像: docker search python 这里我们拉取官方的镜像,标签为3.5 : docker pull python:3.5 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 py...