Best Practices

http://docs.ansible.com/ansible/playbooks_best_practices.html

* windows環境でansibleをインストール [#h4bb8b3a]

** Dockerfile [#l2d09f19]
 FROM centos
 MAINTAINER khayashi4337@gmail.com
 RUN yum -y install epel-release && yum clean all
 RUN yum install -y python36
 RUN python3.6 -m pip install --upgrade pip
 RUN yum -y reinstall glibc-common && \
     pip install --upgrade pip && \
     pip install ansible==2.6.4 && \
     pip install pywinrm && \
     yum clean all && \
     mkdir /mydata
 ENV LANG ja_JP.UTF-8
 CMD ["/bin/bash"]


*** 参考URL [#b1688aa2]
Dockerfileがメンテされてないので、自分でDockerfile作ったのが↑
https://qiita.com/Tkm_Kit/items/58e1fb7990387a2e9c76

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS