基本用法
1.打开linus中的命令行.
-t: 在容器内指定一个终端
-i:允许对容器进行标准输入进行交互
runoob@runoob:~$ docker run -i -t ubuntu:15.10 /bin/bash
1.查询正在运行的容器
$ docker ps
1.在linux中安装python
首先在D盘中新建一个ubuntu_python文件夹.之后映射到容器中的文件.
$ docker run -it --name ubuntu_python -v /docker_python:/home/python --# net=host 93fd78260bd1 /bin/bash
$ cd home/python //进入到指定目录
$ apt update //更新ubuntu系统
$ apt install python3 //安装python3
坑: 映射宿主文件夹与docker文件夹会报错
映射的时候会报错。
C:\Users\CC> docker run -d -p 5009:5009 -v D:\host_mnt\data\sqlite:/home/superset amancevice/superset:0.28.1
C:\Program Files\Docker\Docker\Resources\bin\docker.exe: Error response from daemon: invalid volume specification: '/host_mnt/d/host_mnt/data/sqlite:/home/superset': invalid mount config for type "bind": invalid mount path: '/home/superset' mount pat