摘要:
firewalld基本使用 # 启动: systemctl start firewalld # 查看状态: 是否运行,下面两个命令都可以 systemctl status firewalld firewall-cmd --state #停止: systemctl disable firewalld 阅读全文
摘要:
##概述 Docker Compose是 docker 提供的一个命令行工具,用来定义和运行由多个容器组成的应用。使用 compose,我们可以通过 YAML 文件声明式的定义应用程序的各个服务,并由单个命令完成应用的创建和启动。 ##安装 参考文档:https://docs.docker.com/ 阅读全文