用Docker创建一个常用的ubuntu容器(配置Dockerfile)

为日后使用方便,特此记录

零、安装Docker

安装环境:Ubuntu 16.04.2 LTS
命令来源于这里

#卸载旧版本
apt-get remove docker \
               docker-engine \
               docker.io
#开始安装
apt-get update

#添加使用 HTTPS 传输的软件包以及 CA 证书
apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common

#确认所下载软件包的合法性,需要添加软件源的 GPG 密钥
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

# 向 source.list 中添加 Docker 软件源
sudo add-apt-repository \
    "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
    $(lsb_release -cs) \
    stable"

apt-get update
#安装DockerCE
apt-get install docker-ce

#如果提示没有安装docker.io就执行下面的命令
apt-get install docker.io

#启动 Docker CE
systemctl enable docker
systemctl start docker

一、 普通方法创建容器

  1. 用Docker的ubuntu镜像创建一个容器
docker run -d --name=testUbuntu ubuntu tail -f /dev/null
  1. 进入容器
docker exec -it testUbuntu bash
  1. 更新apt-get
apt-get update
  1. 安装需要的东西
#安装常用工具
apt-get install -y vim
apt-get install -y tree
apt-get install -y net-tools
#安装nginx
apt-get install -y nginx
#安装Python2
apt-get install -y python2.7
#安装Python3
apt-get install -y python3.7
#安装pip3
apt-get install python3-pip
#安装pip
apt-get install -y python-pip python-dev build-essential
#安装supervisor
apt-get install -y supervisor

#安装mysql
apt-get install -y mysql-server
apt-get install -y mysql-client
apt-get install -y libmysqlclient-dev
#检测mysql安装是否成功
netstat -tap | grep mysql
  1. 搭建项目环境
# 导出项目所用的模块
pip freeze >requirements.txt

# 安装导出项目所用的模块
pip install -r requirements.txt

二、 Dockerfile方法创建容器

也可将上面的命令做成Dockerfile,内容如下:

FROM ubuntu:latest

#注意,换行用TAB

RUN apt-get update \
    && apt-get install -y vim \
    && apt-get install -y tree \
    && apt-get install -y net-tools \
    && apt-get install -y git \
    && apt-get install -y nginx \
    && apt-get install -y redis-server \
    && apt-get install -y python2.7 \
    && apt-get install -y python3.7 \
    && apt-get install -y python3-pip \
    && apt-get install -y python-pip python-dev build-essential \
    && apt-get install -y mysql-server \
    && apt install -y mysql-client \
    && apt install -y libmysqlclient-dev

然后执行

docker build -t NAME:TAG .
#如:docker build -t test:v1 . 是test镜像,v1的tag
#注意!
#1. 先执行docker login
#2. 执行build命令时,要在一个空文件夹下(如果不是空文件夹要添加.dockerignore文件)
#3. 要在有Dockerfile文件下的目录执行build命令

用了一个RUN命令执行,是为了节省时间、减少臃肿。


解决问题

ubuntu中mysql启动报错
No directory, logging in with HOME=/
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

#第一步
usermod -d /var/lib/mysql/ mysql
#第二步
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock
#第三步
chown -R mysql:mysql /var/lib/mysql
#之后重启mysql即可
service mysql stop
service mysql start

安装完成后,是不需要密码登录的。设置密码操作如下 (命令来源于这里)

#登录mysql
root@fe3a9125ce8b:/# mysql
#mysql下执行如下命令
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update user set authentication_string=PASSWORD("你的密码") where user='root';
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 1

mysql> update user set plugin="mysql_native_password";
Query OK, 1 row affected (0.00 sec)
Rows matched: 4  Changed: 1  Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye

#重启mysql  
root@fe3a9125ce8b:/# service mysql restart;
 * Stopping MySQL database server mysqld                                                                                                          [ OK ] 
 * Starting MySQL database server mysqld                                                                                                                 No directory, logging in with HOME=/
                                         
#用密码登录mysql
mysql -u root -p 密码;

参考资料:
https://yeasy.gitbooks.io/docker_practice/image/build.html
https://blog.csdn.net/wy_97/article/details/78982694


设置mysql远程登录

GRANT ALL PRIVILEGES ON *.* TO '用户名'@'主机地址' IDENTIFIED BY '密码' WITH GRANT OPTION;

你可能感兴趣的:(用Docker创建一个常用的ubuntu容器(配置Dockerfile))