Files
wordpress-caddy-docker/README.md
T

53 lines
951 B
Markdown
Raw Normal View History

2024-03-11 14:33:41 +07:00
# wordpress-caddy-docker
A docker-composed based platform for running WordPress with Caddy server V2
2024-03-11 14:49:56 +07:00
## 🏃 Getting Started
To get your WordPress installation running follow these simple steps.
### Prerequisites
* [Docker](https://www.docker.com/)
* [Docker Compose](https://docs.docker.com/compose/)
### Installation
1. Clone the repo
```sh
2024-03-11 14:50:51 +07:00
git clone https://github.com/10h30/wordpress-caddy-docker.git
2024-03-11 14:49:56 +07:00
```
2. Go into the created folder
```sh
2024-03-11 14:50:51 +07:00
cd ./wordpress-caddy-docker
2024-03-11 14:49:56 +07:00
find . -type f -iname "*.sh" -exec chmod +x {} \;
```
<p align="right">(<a href="#top">back to top</a>)</p>
<!-- USAGE EXAMPLES -->
## 🚀 Usage
### Install
1. Modify passwords and variables inside ```.env``` file as you wish
2. Run shell command
```sh
2024-03-11 14:53:47 +07:00
./wp-install.sh
2024-03-11 14:49:56 +07:00
```
2024-03-11 14:52:26 +07:00
### Init Wordpress Installation
2024-03-11 14:49:56 +07:00
1. Run shell command
```sh
2024-03-11 14:53:47 +07:00
./wp-init.sh
2024-03-11 14:49:56 +07:00
```
2024-03-11 14:52:26 +07:00
### Uninstall
2024-03-11 14:49:56 +07:00
1. Run shell command
```sh
2024-03-11 14:53:47 +07:00
./wp-uninstall.sh
2024-03-11 14:49:56 +07:00
```