https://github.com/kutia-software-company/wordpress-with-docker
👍 Build something awesome in WordPress, good starter with docker. ✍️ Developed by Sami Maxhuni.
https://github.com/kutia-software-company/wordpress-with-docker
docker docker-compose mysql phpmyadmin wordpress
Last synced: 3 months ago
JSON representation
👍 Build something awesome in WordPress, good starter with docker. ✍️ Developed by Sami Maxhuni.
- Host: GitHub
- URL: https://github.com/kutia-software-company/wordpress-with-docker
- Owner: kutia-software-company
- Created: 2021-07-20T15:17:10.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-23T09:16:26.000Z (almost 5 years ago)
- Last Synced: 2025-10-26T14:42:23.716Z (8 months ago)
- Topics: docker, docker-compose, mysql, phpmyadmin, wordpress
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Getting Started
You can use Docker Compose to easily run WordPress in an isolated environment built with Docker containers. This quick-start guide demonstrates how to use Compose to set up and run WordPress. Before starting, make sure you have Compose installed.
### Instalation
1. Create directory where you want to clone repository
```sh
mkdir yourproject && cd yourproject
```
2. Clone the repo on directory
```sh
git clone https://github.com/kutia-software-company/wordpress-with-docker.git .
```
3. Copy from environment example to environment
```sh
cp .env.example .env
```
4. Run docker compose
```sh
docker-compose up -d --build
```
open in browser:
```
http://locahost:8000
```
Inside src folder you can see wordpress contents here you can work your plugin or theme


if you want to access in phpmyadmin:
```
http://localhost:8181/
```
username: wordpress
password: wordpress
you can change all information in .env file
### Shutdown and cleanup
The command `docker-compose down` removes the containers and default network, but preserves your WordPress database.
The command `docker-compose down --volumes` removes the containers, default network, and the WordPress database.