美文网首页linux tools
doker安装、运行镜像、上传镜像

doker安装、运行镜像、上传镜像

作者: 领带衬有黄金 | 来源:发表于2019-04-02 11:49 被阅读46次
    doker

    Docker 是一个为开发者和系统管理员在容器中开发、部署和运行的平台。
    灵活、轻量级、可互换、部署简单、扩展性强
    Docker的应用场景
    Web 应用的自动化打包和发布。
    自动化测试和持续集成、发布。

    镜像Image和容器Container

    容器是运行镜像后产生的.(镜像相当于类,容器相当于实例。)
    镜像是一个包含所有需要运行的文件组成的包,比如代码、可运行文件、库、环境变量和配置
    文件等。
    镜像是容器运行的一个实例,查看运行的容器命令:

    docker ps
    

    容器和虚拟机的区别

    容器和普通进程一样直接在主机操作系统上运行,不占用更多的资源。
    虚拟机直接模拟一个虚拟操作系统,程序最后是在虚拟操作系统里面运行,占用过多的资源。
    PS:虚拟机占用的资源比Docker大很多。

    Docker CE 和Docker EE

    CE:Community Edition(社区版本)
    EE:Enterprise Edition(企业版本)

    安装docker,检测docker是否安装成功。

    安装docker 之前设置docker仓库
    sudo yum install -y yum-utils device-mapper-persistent-data lvm2
    sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-
    ce.repo
    ubuntu
    sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
    sudo apt-get update
    安装docker ce
    sudo apt-get install docker-ce
    启动docker
    sudo systemctl start docker
    service start docker验证docker是否安装成功
    sudo docker run hello-world
    卸载docker ce
    sudo yum remove docker-ce
    sudo rm -rf varlib/docker
    查看docker版本号
    docker version
    查看docker信息
    docker info
    列列出docker容器器
    docker image ls
    

    可整体搬迁的运行镜像

    在服务器任意目录下进行Dockerfile配置,Dockerfile定义了容器内的环境。

    mkdir docker_test
    cd docker_test
    vim Dockerfile
    
    @Dockerfile文件
    # Use an official Python runtime as a parent image
    FROM python:2.7-slim  # 选择python版本
    # Set the working directory to /app
    WORKDIR /app # 工作区间外部
    # Copy the current directory contents into the container at /app 
    ADD . /app  # 添加到内部项目
    # Install any needed packages specified in requirements.txt
    RUN pip install -i https://pypi.douban.com/simple  -r requirements.txt  # 下载依赖环境
    # Make port 80 available to the world outside this container
    EXPOSE 80 #暴露监听端口
    # Define environment variable
    ENV NAME World #虚拟环境名字
    # Run app.py when the container launches
    CMD ["python", "app.py"] #命令行python 执行app.py文件
    

    requirements.txt

    Flask
    Redis
    

    app.py

    from flask import Flask
    from redis import Redis, RedisError
    import os
    import socket
    # Connect to Redis
    redis = Redis(host="redis", db=0, socket_connect_timeout=2, socket_timeout=2)
    app = Flask(__name__)
    @app.route("/")
    def hello():
    try:
    visits = redis.incr("counter")
    except RedisError:
    visits = "<i>cannot connect to Redis, counter disabled</i>"
    html = "<h3>Hello {name}!</h3>" \
    "<b>Hostname:</b> {hostname}<br/>" \
    "<b>Visits:</b> {visits}"
    return html.format(name=os.getenv("NAME", "world"),hostname=socket.gethostname(), visits=visits)
    if __name__ == "__main__":
    app.run(host='0.0.0.0', port=80)
    

    创建docker 镜像(-t 取一个标签名字)

    docker build -t test.
    

    重启docker

    service docker restart
    

    运行容器 -p 外面端口4000映射容器内端口80

    docker run -p 4000:80 myhello
    

    查看docker当前进程

    docker ps
    

    查看docker当前镜像有哪些

    docker image ls
    

    停止docker

    docker container stop 63ac7fad8ea4
    

    给镜像打标签

    docker tag <your-image> daocloud.io/team_we/<your-image>:<tag>
    例子: docker tag myhello daocloud.io/team_we/test:v1
    

    上传镜像

    docker push daocloud.io/team_we/<your-image>:<tag>
    例子: docker push daocloud.io/team_we/test:v1
    

    从服务器拉取镜像并运行容器

    docker run -p 4000:80 username/repository:tag
    例子: docker run -p 4000:80 daocloud.io/team_we/test:v1
    

    docker image remove a7f8edcda046 -f : 删除镜像

    docker run -p 8008:80 a7f8edcda046 : 开启停止后的镜像

    相关文章

      网友评论

        本文标题:doker安装、运行镜像、上传镜像

        本文链接:https://www.haomeiwen.com/subject/zuhwbqtx.html