containerized-wordpress-project

(★ 45)

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

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

ansible-galaxy

설명 보기 ▼

Ansible 역할 생성 및 관리.
더 많은 정보: <https://docs.ansible.com/projects/ansible/latest/cli/ansible-galaxy.html>.

ansible-galaxy {{role|collection}} list

역할 설치:

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

역할 제거:

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

설치된 역할 리스트:

🔍

ansible-playbook

설명 보기 ▼

SSH를 통해 원격 머신에서 playbook에 정의된 작업 실행.
더 많은 정보: <https://docs.ansible.com/projects/ansible/latest/cli/ansible-playbook.html>.

ansible-playbook {{playbook}}

playbook에서 작업 실행:

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

사용자 정의 호스트 인벤토리를 포함한 playbook에서 작업 실행:

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

명령어로 정의된 추가 변수를 사용하여 playbook에서 작업 실행:

🔍

git clone

설명 보기 ▼

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