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
Raw Permalink Normal View History

2021-10-13 11:22:25 +00:00
- name: Install python3-setuptools
apt:
name: python3-setuptools
state: present
2021-10-19 16:59:08 +00:00
- name: Install python3-dev
2021-10-19 16:49:37 +00:00
apt:
name: python3-dev
2021-10-19 16:56:28 +00:00
state: present
2021-10-19 16:59:08 +00:00
- name: Install gcc
apt:
name: gcc
2021-10-19 17:01:43 +00:00
state: present
- name: Install libffi-dev
apt:
name: libffi-dev
state: present
2021-10-19 16:54:33 +00:00
- name: Install build-essential
apt:
name: build-essential
2021-10-19 16:49:37 +00:00
state: present
2021-10-13 11:22:25 +00:00
- name: Install docker python package
pip:
name: docker
executable: pip3
2021-10-19 16:46:43 +00:00
- name: Install "docker-compose" python package
2021-10-13 11:22:25 +00:00
pip:
name: docker-compose
executable: pip3