This repository has been archived on 2022-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
docker-traefik/tasks/composer.yml

28 lines
575 B
YAML

- name: Install python3-setuptools
apt:
name: python3-setuptools
state: present
- name: Install python3-dev
apt:
name: python3-dev
state: present
- name: Install gcc
apt:
name: gcc
state: present
- name: Install libffi-dev
apt:
name: libffi-dev
state: present
- name: Install build-essential
apt:
name: build-essential
state: present
- name: Install docker python package
pip:
name: docker
executable: pip3
- name: Install "docker-compose" python package
pip:
name: docker-compose
executable: pip3