blob: e35f8f9110e2b5bc7ea8e406347bfee2fbc2ab12 [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Debian add Docker repository and update apt cache
apt_repository:
repo: deb https://apt.dockerproject.org/repo ubuntu-{{ debian_version }} main
update_cache: yes
state: present
tags: [docker]
- name: Debian Docker is present
apt:
name: docker-engine
state: latest
force: yes
tags: [docker]
- name: Debian python-pip is present
apt: name=python-pip state=present
tags: [docker]
- name: Debian docker-py is present
pip:
name: docker-py
version: 1.6.0
state: present
tags: [docker]
- name: netifaces pip package is present
pip:
name: netifaces
version: 0.10.4
state: present
tags: [docker]
- name: Debian files are present
template:
src: "{{ docker_cfg }}"
dest: "{{ docker_cfg_dest }}"
register: copy_result
tags: [docker]
- name: Enable insecure install registry
template:
src: "{{ docker_daemon_json }}"
dest: "{{ docker_daemon_json_dest }}"
register: copy_result
tags: [docker]
- name: Debian Daemon is reloaded
command: systemctl daemon-reload
when: copy_result|changed and is_systemd is defined
tags: [docker]
- name: vagrant user is added to the docker group
user:
name: "{{ ansible_env['SUDO_USER'] }}"
group: docker
register: user_result
tags: [docker]
- name: Debian Docker service is restarted
service:
name: docker
state: restarted
when: copy_result|changed or user_result|changed
tags: [docker]