Podman 登录脚本
1 podman login -u "your_name" -p "your_password" docker.io
1 podman login -u "your_name" -p "your_password" docker.io
在docker仓库中搜索mysql的镜像 1 docker search mysql 下载镜像 1 docker pull mysql 启动 参数 -p 设置端口,–name 取名 ,-e MYSQL_ROOT_PASSWORD=123456 设置 账号为 root ,密码为 123456 ,-d 表示作为一个守护进程在后台运行 1 docker run -p 3306:3306 --name JY_mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql 宿主机连接docker中的mysql 错误的连接方式 1 2 3 4 5 $ mysql -u root -p Enter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) # 可以看出这样会报错 正确的连接方式 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 $ mysql -h 127.0.0.1 -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 5.7.26 MySQL Community Server (GPL) Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> 在docker容器中连接宿主机中的mysql ...
1 2 3 4 5 synmaxcol = 200 " 或者 syntax = off
修改镜像名称 1 podman tag 拉取远程镜像 1 podman pull 制作镜像 1 podman commit 导出导入镜像 保留镜像的层级信息,是一个 docker 的层级目录 tar 包 1 2 3 4 # save docker save vell001/tf-keras > tf-keras.tar # load docker load < tf-keras.tar 不会保留镜像的层级信息,体积小,是一个直接的 linux 文件系统 tar 包 1 2 docker export 33f6c8359187 > tf-keras-33f6c8359187.tar docker import tf-keras-33f6c8359187.tar
用n升级nodejs ...