diff --git a/ansible/hosts b/ansible/hosts index bb48d6e..d360ea8 100644 --- a/ansible/hosts +++ b/ansible/hosts @@ -25,6 +25,9 @@ sub.domain.com:22 [docker-host] 127.0.0.1:22 +[dev] +sub.domain.com:22 + ## green.example.com ## blue.example.com ## 192.168.100.1 diff --git a/ansible/make-host.yml b/ansible/make-host.yml new file mode 100644 index 0000000..4c4e55d --- /dev/null +++ b/ansible/make-host.yml @@ -0,0 +1,8 @@ +--- +- hosts: dev + become: yes + roles: + - core + - docker + - nginx +