Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/banjerr/docker-wordpress-stack
A simple stack for WordPress in Docker containers
https://github.com/banjerr/docker-wordpress-stack
Last synced: 6 days ago
JSON representation
A simple stack for WordPress in Docker containers
- Host: GitHub
- URL: https://github.com/banjerr/docker-wordpress-stack
- Owner: Banjerr
- Created: 2018-05-06T14:48:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-06T14:51:07.000Z (over 6 years ago)
- Last Synced: 2024-11-14T18:54:51.647Z (2 months ago)
- Language: PHP
- Size: 2.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# WordPress On Docker
A simple stack for WordPress development
## What's Included
Official (and latest) images from
- WordPress (which also includes PHP/Apache)
- MariaDB (community fork of MySQL)
- PHPMyAdminAll that is required (after installing Docker) is to `cd` into the root of this project and run `docker-compose up` or `docker-compose up -d`. This will download the official images, if they aren't already on your local machine, start them up and link them all together. You should then be able to go through the typical WP install by hitting `http://localhost` or where ever your local machine points to.
## Things to note
There will be three volumes created
- one for the database (so db data wont be lost if you run `docker-compose down` or exit the container)
- two for the source - we're not versioning WP core files since the latest core files come with the WP image, so we are just going to version the themes and the plugins directories.