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.
21 lines
451 B
YAML
21 lines
451 B
YAML
---
|
|
- name: Add APT Key | Debian
|
|
apt_key:
|
|
keyserver: "{{ apt_keyserver }}"
|
|
id: "{{ apt_key_fingerprint }}"
|
|
state: present
|
|
ignore_errors: true
|
|
tags: [mongodb]
|
|
|
|
- name: Add MongoDB repo and update cache | Debian
|
|
apt_repository:
|
|
repo: "{{ mongodb_apt_repo }}"
|
|
update_cache: yes
|
|
state: present
|
|
tags: [mongodb]
|
|
|
|
- name: Install MongoDB | Debian
|
|
apt:
|
|
name: "{{ mongodb_package }}"
|
|
state: present
|
|
tags: [mongodb] |