使用docker搞定 Python环境搭建

245 篇文章 0 订阅
209 篇文章 0 订阅

【30K上岸京东测试岗】全靠了这套python自动化测试全栈测试开发技术入门到精通教程。

前言

当我们在公司的电脑上搭建了一套我们需要的Python环境,比如我们的版本是3.8的Python,那我可能有一天换了一台电脑之后,我整套环境就需要全部重新搭建,不只是Python,我们一系列的第三方库都需要重新安装,那么我们有没有解决问题的方法,当然有,我们可以使用docker解决困扰我们的环境问题。

搜索镜像

docker search : 从Docker Hub(hub.docker.com)中搜索指定的镜像,例如我们要搜索一个基于centos7环境安装的Python3.8版本。命令如下:

docker search python 
  • NAME 镜像仓库名称
  • DESCRIPTION 镜像描述信息
  • STARS 镜像收藏数
  • OFFICIAL 是否为docker官方发布的镜像
  • AUTOMATED 是否为自动化构建的镜像

输出如下:

  1. [root@xxxx ~]# docker search python

  2. NAME DESCRIPTION STARS OFFICIAL AUTOMATED

  3. python Python is an interpreted, interactive, objec… 4288 [OK]

  4. django Django is a free web application framework, … 847 [OK]

  5. pypy PyPy is a fast, compliant alternative implem… 193 [OK]

  6. kaggle/python Docker image for Python scripts run on Kaggle 123 [OK]

  7. arm32v7/python Python is an interpreted, interactive, objec… 37

  8. centos/python-38-centos7 Platform for building and running Python 3.8… 36

  9. joyzoursky/python-chromedriver Python with Chromedriver, for running automa… 33 [OK]

  10. circleci/python Python is an interpreted, interactive, objec… 29

  11. nikolaik/python-nodejs Python with Node.js 18 [OK]

  12. arm64v8/python Python is an interpreted, interactive, objec… 17

  13. centos/python-36-centos7 Platform for building and running Python 3.6… 17

  14. centos/python-27-centos7 Platform for building and running Python 2.7… 15

  15. iron/python Tiny Python Microcontainer 9

  16. publicisworldwide/python-conda Basic Python environments with Conda. 6 [OK]

  17. dockershelf/python Repository for docker images of Python. Test… 4 [OK]

  18. i386/python Python is an interpreted, interactive, objec… 3

  19. bitnami/python Bitnami Python Docker Image 3 [OK]

  20. komand/python-plugin DEPRECATED: Komand Python SDK 2 [OK]

  21. centos/python-34-centos7 Platform for building and running Python 3.4… 2

  22. muccg/python-base Base images that use python 1 [OK]

  23. amd64/python Python is an interpreted, interactive, objec… 1

  24. ccitest/python CircleCI test images for Python 0 [OK]

  25. saagie/python Repo for python jobs 0

  26. qbtrade/python python 3.6.5 with requirements last update s… 0

  27. openshift/python-33-centos7 DEPRECATED: A Centos7 based Python v3.3 imag… 0

  28. [root@xxxx ~]#

拉取镜像

使用docker pull可以拉取我们想要拉取的镜像,命令如下:

docker pull centos/python-38-centos7

输出如下:

  1. [root@xxxx ~]# docker pull centos/python-38-centos7

  2. Using default tag: latest

  3. latest: Pulling from centos/python-38-centos7

  4. 8ba884070f61: Pull complete

  5. c3dca185eb14: Pull complete

  6. ee720ba20823: Pull complete

  7. 497ef6ea0fac: Pull complete

  8. ebf1fb961f61: Pull complete

  9. b8249f70ce00: Pull complete

  10. ebd817e2efe7: Pull complete

  11. d3d10dd0937c: Pull complete

  12. a8ad47ec8182: Pull complete

  13. Digest: sha256:d10c46b6db436357965a96716e9f5d230d9b1a58c6db1f0c4f43c1fb1994cd79

  14. Status: Downloaded newer image for centos/python-36-centos7:latest

  15. [root@xxxx ~]#

查看镜像

使用docker images查看本地已经下载好的镜像,命令如下:

docker images

输出如下:

[root@xxxx ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos/python-38-centos7 latest b8d15efaa8ec 2 months ago 651MB ubuntu 15.10 9b9cb95443b5 2 years ago 137MB training/webapp latest 6fae60ef3446 4 years ago 349MB
运行交互式的容器

Docker会在隔离的容器中运行进程。当运行docker run命令时,Docker会启动一个进程,并为这个进程分配其独占的文件系统、网络资源和以此进程为根进程的进程组。 在容器启动时,镜像可能已经定义了要运行的二进制文件、暴露的网络端口等,但是用户可以通过docker run命令重新定义 最基本的docker run命令的格式如下:

$ sudo docker run [OPTIONS] IMAGE[:TAG] [COMMAND] [ARG...]

比如我这里要启动centos7,进入交互模式,通过docker的两个参数 -i -t,让docker运行的容器实现"对话"的能力

  • t: 在新容器内指定一个伪终端或终端
  • i: 允许你对容器内的标准输入 (STDIN) 进行交互
docker run -i -t centos/python-38-centos7 /bin/bash

如下进入centos终端后,进python交互环境打印"hello, i'm Muller.",最后用exit退出,内容如下:

  1. [root@xxxx ~]# docker run -i -t centos/python-36-centos7 /bin/bash

  2. (app-root) python

  3. Python 3.6.3 (default, Mar 20 2018, 13:50:41)

  4. [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux

  5. Type "help", "copyright", "credits" or "license" for more information.

  6. >>> print("hello, i'm Muller.")

  7. hello, i'm Muller.

  8. >>> exit()

  9. (app-root) exit

后台模式启动

run加上-i -t是进交互模式,如果不想进交互模式直接执行脚本,可以直接使用run,比如echo "hello world",屏幕会输出"hello world"

docker run centos/python-38-centos7 /bin/echo "hello world"

如果不想在前台执行,一般我们运行环境会选择挂后台,加个-d 参数即可

docker run -d centos/python-38-centos7 /bin/echo "hello world"
  1. [root@xxxx ~]# docker run centos/python-38-centos7 /bin/echo "hello world"

  2. hello world

  3. [root@xxxx ~]# docker run -d centos/python-38-centos7 /bin/echo "hello world"

  4. 1e5c22451bf2215f6c098e066b74363f1db9cde97e9ecea02947ccbbf2fa7e8f

  5. [root@xxxx ~]#

使用-d后台执行后,会发现下面多了一长串,这个就是容器的唯一id,可以通过这个id找到容器

ps查看容器

先run下 training/webapp

docker run -d -p 5000:5000 training/webapp python app.py

使用docker ps查看正在运行的容器

docker ps

输出如下:

  1. [root@xxxx ~]# docker ps

  2. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS

  3. c9e8a325b145 training/webapp "python app.py" 16 hours ago Up 16 hours 0.0.0.0:32768->5000/tcp

  4. [root@xxxx ~]#

上面的echo "hello world"只是一个很简单的输出指令,执行完就关闭了,所以ps查找正在运行的查不到,可以加个-a参数,显示所有的容器,包括未运行的

ps 查找参数相关语法

  • -a :显示所有的容器,包括未运行的
  • -f :根据条件过滤显示的内容
  • --format :指定返回值的模板文件
  • -l :显示最近创建的容器
  • -n :列出最近创建的n个容器
  • --no-trunc :不截断输出
  • -q :静默模式,只显示容器编号
  • -s :显示总的文件大小
logs查看日志

可以通过容器id或者容器name去查运行的日志

  1. docker logs [容器id]

  2. docker logs [容器name]

停止容器

停止容器的话,可以用stop容器的id或者容器NAME名称

  1. docker stop [容器id]

  2. docker stop [容器name]

启动容器

docker start启动容器

docker start [容器id]

正在运行的容器,可以使用 docker restart 命令来重启

docker restart [容器id]
删除容器

docker rm 命令来删除不需要的容器

  1. docker rm [容器id]

  2. docker rm [容器name]

注:当删除运行中的容器时,需要先stop停止容器,再执行删除命令

总结

本文主要介绍了使用docker搭建Python环境,以及对于docker拉取镜像,docker容器的主要操作,包括运行容器,停止容器,删除容器等。希望对大家学习docker能有所帮助。

 

总结:

感谢每一个认真阅读我文章的人!!!

作为一位过来人也是希望大家少走一些弯路,如果你不想再体验一次学习时找不到资料,没人解答问题,坚持几天便放弃的感受的话,在这里我给大家分享一些自动化测试的学习资源,希望能给你前进的路上带来帮助。

软件测试面试文档

我们学习必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有字节大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。

 

          视频文档获取方式:
这份文档和视频资料,对于想从事【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴我走过了最艰难的路程,希望也能帮助到你!以上均可以分享,点下方小卡片即可自行领取。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值