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.
10 lines
271 B
YAML
10 lines
271 B
YAML
- hosts: localhost
|
|
remote_user: vagrant
|
|
vars:
|
|
with_docker: "{{ deploy_docker | default(false) }}"
|
|
roles:
|
|
- { role: docker, when: with_docker|bool }
|
|
- { role: docker-compose, when: with_docker|bool }
|
|
- mongodb
|
|
- bigchaindb
|
|
- bigchaindb-driver |