dcoker 小应用(一)
阅读原文时间:2023年07月09日阅读:1

docker 创建Ubuntu系统

1、创建Dockerfile

#ubuntu:14.04 image

FROM ubuntu:14.04

MAINTAINER XXX, xxx@xxx.com

RUN apt-get update
RUN apt-get -y install git
RUN apt-get -y install autoconf
RUN apt-get -y install binutils
RUN apt-get -y install build-essential
RUN apt-get -y install libzip-dev
RUN apt-get -y install libbz2-dev

注:ubuntu 版本14.04

  xxx创建

  在Ubuntu系统里面升级git 等之类的库文件!

2、运行docker Deckefile

1 sudo docker build -t ares_ubuntu:14.04 ./

注:-t 后面是images REPOSITORY与id

3、查看 dcoker images

sudo docker images

简单的镜像就已经完成了

4、运行

sudo docker run -t ares_ubuntu:14.04 bash

那么就有一个全新的Ubuntu系统了