# ansible配置

# 进入容器

docker-compose run --rm ansible bash

# 配置文件

ansible的配置文件位于/etc/ansible/ansible.cfg,可以通过ansible-config dump命令查看。

示例配置文件如下:

[defaults]
inventory = ./hosts
host_key_checking = False
remote_user = root
roles_path = ./roles
Last Updated: 2022/12/8 14:41:39