enable automated setup of physical infrastructure
[integration/packaging/ansible-opendaylight.git] / roles / infra / tasks / setup_docker_daemon.yml
1 ---
2 - include: set_proxies.yml
3   when: lab_http_proxy is defined
4
5 - name: Install docker on host system
6   include: install_docker.yml
7
8 - name: Update docker registry in /etc/hosts
9   include: update_etc_hosts.yml
10
11 - name: Configure docker daemon
12   include: configure_docker_daemon.yml
13
14 # vim: set et ts=2 sw=2 ai ft=yaml :
15