containerized-wordpress-project

(★ 45)

Automagically deploy & run WordPress with Let's Encrypt HTTPS encryption using Ansible & Docker

File Explorer

  • .gitignore
  • ansible.cfg
  • containerized-wordpress.yml
  • hosts
  • LICENSE
  • README.md
  • requirements.yml

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

ansible-galaxy

View Details ▼

Perform various Ansible Role and Collection related operations.

ansible-galaxy {{role|collection}} list

List installed roles or collections:

ansible-galaxy role search {{keyword}} -v{{vvvvv}}

Search for a role with various levels of verbosely (`-v` should be specified at the end):

ansible-galaxy role {{install|remove}} {{role_name1 role_name2 ...}}

Install or remove role(s):

🔍

ansible-playbook

View Details ▼

Execute tasks defined in playbook on remote machines over SSH.

ansible-playbook {{playbook}}

Run tasks in playbook:

ansible-playbook {{playbook}} {{[-i|--inventory]}} {{inventory_file}}

Run tasks in playbook with custom host inventory:

ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{variable1}}={{value1}} {{variable2}}={{value2}}"

Run tasks in playbook with extra variables defined via the command-line:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

// repository documentation