parent
2d7ab9bedc
commit
a6d9be49dd
@ -0,0 +1,27 @@
|
||||
---
|
||||
- hosts: debiantest
|
||||
gather_facts: yes
|
||||
vars_files:
|
||||
- ./test/vars_docker.yml
|
||||
pre_tasks:
|
||||
- debug: var=ansible_python_interpreter
|
||||
- debug: var=ansible_python_version
|
||||
- name: Install docker
|
||||
shell: |
|
||||
apt-get update
|
||||
apt-get install -y \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg-agent \
|
||||
software-properties-common
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
|
||||
add-apt-repository \
|
||||
"deb [arch=amd64] https://download.docker.com/linux/debian \
|
||||
$(lsb_release -cs) \
|
||||
stable"
|
||||
apt-get update
|
||||
apt-get install -y docker-ce docker-ce-cli containerd.io
|
||||
|
||||
roles:
|
||||
- ansible-bibliogram
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
ansible_bibliogram_base_url: "http://debiantest:10407"
|
||||
ansible_bibliogram_with_docker: true
|
||||
ansible_bibliogram_tor_enabled: true
|
Loading…
Reference in new issue