├── .gitignore ├── 00、自用命令.md ├── 01、安装Docker.md ├── 02、创建一个自己的 Docker Image.md ├── 03、进入已创建的Docker容器并运行shell.md ├── 04、run与start的区别.md ├── 05、容器的管理.md ├── 06、container、image、文件的互相转化.md ├── 07、Docker与MySQL.md ├── 08、Docker的常见问题.md ├── 09、创建容器网络.md ├── README.md ├── docker-demo-01-express ├── Dockerfile ├── app.js ├── bin │ └── www ├── package-lock.json ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── index.js │ └── users.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── docker-demo-02-MySQL ├── app │ ├── data.sql │ ├── init.sh │ ├── mysql.cnf │ ├── privileges.sql │ └── utf8.sql ├── auto_backup_mysql.sh ├── create-image-mysql.sh ├── readme.md └── reset.sh └── install_docker.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /00、自用命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/00、自用命令.md -------------------------------------------------------------------------------- /01、安装Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/01、安装Docker.md -------------------------------------------------------------------------------- /02、创建一个自己的 Docker Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/02、创建一个自己的 Docker Image.md -------------------------------------------------------------------------------- /03、进入已创建的Docker容器并运行shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/03、进入已创建的Docker容器并运行shell.md -------------------------------------------------------------------------------- /04、run与start的区别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/04、run与start的区别.md -------------------------------------------------------------------------------- /05、容器的管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/05、容器的管理.md -------------------------------------------------------------------------------- /06、container、image、文件的互相转化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/06、container、image、文件的互相转化.md -------------------------------------------------------------------------------- /07、Docker与MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/07、Docker与MySQL.md -------------------------------------------------------------------------------- /08、Docker的常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/08、Docker的常见问题.md -------------------------------------------------------------------------------- /09、创建容器网络.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/09、创建容器网络.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/README.md -------------------------------------------------------------------------------- /docker-demo-01-express/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/Dockerfile -------------------------------------------------------------------------------- /docker-demo-01-express/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/app.js -------------------------------------------------------------------------------- /docker-demo-01-express/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/bin/www -------------------------------------------------------------------------------- /docker-demo-01-express/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/package-lock.json -------------------------------------------------------------------------------- /docker-demo-01-express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/package.json -------------------------------------------------------------------------------- /docker-demo-01-express/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/public/stylesheets/style.css -------------------------------------------------------------------------------- /docker-demo-01-express/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/routes/index.js -------------------------------------------------------------------------------- /docker-demo-01-express/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/routes/users.js -------------------------------------------------------------------------------- /docker-demo-01-express/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/views/error.jade -------------------------------------------------------------------------------- /docker-demo-01-express/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/views/index.jade -------------------------------------------------------------------------------- /docker-demo-01-express/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-01-express/views/layout.jade -------------------------------------------------------------------------------- /docker-demo-02-MySQL/app/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/app/data.sql -------------------------------------------------------------------------------- /docker-demo-02-MySQL/app/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/app/init.sh -------------------------------------------------------------------------------- /docker-demo-02-MySQL/app/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/app/mysql.cnf -------------------------------------------------------------------------------- /docker-demo-02-MySQL/app/privileges.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/app/privileges.sql -------------------------------------------------------------------------------- /docker-demo-02-MySQL/app/utf8.sql: -------------------------------------------------------------------------------- 1 | SET NAMES 'utf8mb4'; 2 | SHOW VARIABLES LIKE 'character_set_%'; -------------------------------------------------------------------------------- /docker-demo-02-MySQL/auto_backup_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/auto_backup_mysql.sh -------------------------------------------------------------------------------- /docker-demo-02-MySQL/create-image-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/create-image-mysql.sh -------------------------------------------------------------------------------- /docker-demo-02-MySQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/readme.md -------------------------------------------------------------------------------- /docker-demo-02-MySQL/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/docker-demo-02-MySQL/reset.sh -------------------------------------------------------------------------------- /install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq20004604/docker-learning/HEAD/install_docker.sh --------------------------------------------------------------------------------