Skip to content
Snippets Groups Projects
Commit 70e134ed authored by dehury's avatar dehury
Browse files

Removing virtualenv pkg installation from dockerengine create ope.

parent 14795605
No related branches found
No related tags found
No related merge requests found
......@@ -12,13 +12,13 @@
yum:
name: "*"
state: latest
- name: Create target directory
file:
path=/etc/docker/
state=directory
- name: Create target directory
file:
path=/etc/docker/
state=directory
mode=0755
- name: configure docker network address, ahead of time, to solve issues with docker default network collision with UT VPN
copy:
copy:
dest: /etc/docker/daemon.json
content: |
{
......@@ -37,7 +37,6 @@
- device-mapper-persistent-data
- lvm2
- python3-pip
- virtualenv
- python3-setuptools
- name: Add Docker repo
......@@ -85,7 +84,7 @@
state: started
enabled: yes
become: yes
- name: Install Docker Module for Python
pip:
name: "docker"
......@@ -98,32 +97,32 @@
# - curl
# - gnupg
# - software-properties-common
# - name: Add Docker GPG key
# apt_key:
# url: https://download.docker.com/linux/{{ ansible_distribution|lower }}/gpg
# id: 0EBFCD88
# state: present
# - name: Add Docker repository
# apt_repository:
# filename: docker
# repo: deb [arch=amd64] https://download.docker.com/linux/{{ ansible_distribution|lower }} {{ ansible_distribution_release|lower }} stable
# update_cache: true
# - name: Create target directory
# file:
# path=/tmp/docker/
# state=directory
# - name: Create target directory
# file:
# path=/tmp/docker/
# state=directory
# mode=0755
# - name: Create target directory
# file:
# path=/etc/docker/
# state=directory
# - name: Create target directory
# file:
# path=/etc/docker/
# state=directory
# mode=0755
# - name: configure docker network address, ahead of time, to solve issues with docker default network collision with UT VPN
# copy:
# copy:
# dest: /etc/docker/daemon.json
# content: |
# {
......@@ -136,7 +135,7 @@
# - name: Install docker-ce
# apt:
# name: docker-ce
# - name: Start and enable docker service
# service:
# name: docker
......@@ -144,4 +143,4 @@
# state: started
# when: ansible_os_family == "Debian"
\ No newline at end of file
# when: ansible_os_family == "Debian"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment