https://github.com/itumulak/wp-docker-server
This is docker stack that let's you spin up a WordPress server.
https://github.com/itumulak/wp-docker-server
docker docker-compose mysql phpmyadmin wordpress
Last synced: about 2 months ago
JSON representation
This is docker stack that let's you spin up a WordPress server.
- Host: GitHub
- URL: https://github.com/itumulak/wp-docker-server
- Owner: itumulak
- Created: 2025-07-13T01:24:06.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-07-13T02:13:26.000Z (12 months ago)
- Last Synced: 2025-07-13T03:42:45.129Z (12 months ago)
- Topics: docker, docker-compose, mysql, phpmyadmin, wordpress
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WP Docker server
This is docker stack that let's you spin up WordPress server.
## Prerequisites
- Docker
## Stack
- WordPress
- MySQL
- PHPMyAdmin
## Getting started
Update `.env` to change container name, ports, credentials, etc.
Run `docker-compose.yml`.
```sh
docker compose up -d
```
Go to https://localhost:8080 (or what port you have define in .env) and complete the wordpress installation.
A `wordpress_data` folder should exists now. This is where WordPress instance will reside.
## FAQs
**Q:** I got a **Permission Denied** when adding new files in `wordpress_data` folder.
**A:** Set the folder permission.
> [!WARNING]
> This is not advisable in production server.
```sh
chown -R 777 ./wordpress_data
```