Configure, deploy and orchestrate remote servers π
Install ansible:
pipx install --include-deps ansible
Create a configuration file (~/.ansible.cfg
):
[defaults]
remote_user = <remote_user>
Add the IP address of your remote server to the inventory
file:
[droplets]
<ip_address>
The current playbooks are configured for Ubuntu 20.04
To update and install system packages:
make packages
To install pyenv:
make pyenv
To install docker and docker-compose:
make docker