Docker Ubuntu Python3

  



Docker 安装 Python

方法一、docker pull tomcat

查找 Docker Hub 上的 Tomcat 镜像:

可以通过 Sort by 查看其他版本的 tomcat,默认是最新版本 tomcat:latest

Win10内置Ubuntu,完美使用Docker in Windows. Windows10 内置了Linux系统:WSL (Windows Subsystem for Linux, 又称Bash for Windows)。可以方便地在Win10里使用Ubuntu等Linux系统的命令行. Mar 15, 2021 Ansible AWX is a free and opensource front-end web application that provides a user interface to manage Ansible playbooks and inventories, as well as a REST API for Ansible. It is an open source version of Red Hat Ansible Tower. In this guide, we are going to install Ansible AWX on Ubuntu 20.04 LTS. Docker 安装 Tomcat 方法一、docker pull tomcat 查找 Docker Hub 上的 Tomcat 镜像: 可以通过 Sort by 查看其他版本的 tomcat,默认是最新版本 tomcat:latest。. I needed docker:latest and python:latest images for Gitlab CI. Here is what I came up with: FROM ubuntu:latest RUN apt update RUN apt install -y sudo RUN sudo apt install -y docker.io RUN sudo apt install -y python3-pip RUN sudo apt install -y python3 RUN docker -version RUN pip3 -version RUN python3 -version.

此外,我们还可以用 docker search tomcat 命令来查看可用版本:

这里我们拉取官方的镜像:

等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 tomcat 的镜像。

方法二、通过 Dockerfile 构建

创建Dockerfile

首先,创建目录tomcat,用于存放后面的相关东西。

webapps 目录将映射为 tomcat 容器配置的应用程序目录。

logs 目录将映射为 tomcat 容器的日志目录。

conf 目录里的配置文件将映射为 tomcat 容器的配置文件。

进入创建的 tomcat 目录,创建 Dockerfile。

Docker ubuntu python 32-bit

通过 Dockerfile 创建一个镜像,替换成你自己的名字:

Docker Ubuntu Python 3.0

创建完成后,我们可以在本地的镜像列表里查找到刚刚创建的镜像: Docker php curl.

使用 tomcat 镜像

运行容器

命令说明:

-p 8080:8080:将主机的 8080 端口映射到容器的 8080 端口。

Docker Ubuntu Python 3

-v $PWD/test:/usr/local/tomcat/webapps/test:将主机中当前目录下的 test 挂载到容器的 /test。

查看容器启动情况

通过浏览器访问

Docker 安装 Python