mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Change consists of two deployment models: - Using Vagrant(single node, with/without docker) - Using Ansible(single node, with/without docker) - Updated quickstart documentation. - Some WIP comments, which will be addressed later. Depending on the requirements.
9 lines
290 B
YAML
9 lines
290 B
YAML
---
|
|
- name: Get docker-compose
|
|
become: yes
|
|
get_url:
|
|
url: "{{ docker_compose_base_url }}{{ docker_compose_version }}/docker-compose-{{ ansible_system }}-{{ ansible_machine}}"
|
|
dest: "{{docker_compose_binary}}"
|
|
mode: 0755
|
|
when: docker_compose_install
|
|
tags: [docker-compose] |