paulbsd-salt/states/docker/install.sls

12 lines
232 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
{%- from "docker/map.jinja" import docker with context %}
docker-pkgs:
2022-12-24 17:48:15 +01:00
pkg.installed:
2020-07-10 00:58:55 +02:00
- pkgs: {{ docker.pkgs }}
2023-02-04 19:54:02 +01:00
{%- for pkg in docker.pip_pkgs %}
docker-pip-{{ pkg }}:
2020-07-10 00:58:55 +02:00
pip.installed:
2023-02-04 19:54:02 +01:00
- name: {{ pkg }}
2022-12-24 17:48:15 +01:00
{%- endfor %}