🚢 a docker image for wordpress sites built with bedrock
Bedrock is a modern WordPress stack that helps you get started with the best development tools and project structure.
Much of the philosophy behind Bedrock is inspired by the Twelve-Factor App methodology including the WordPress specific version.
Rather than using Apache, we instead use nginx
dispatching fastcgi
requests to HHVM, with a fallback to php-fpm
if we get a bad gateway. This should make your Bedrock install a little quicker than your average WordPress installation.
docker run --name your-project-name --link your-mysql-container-name:mysql -p 80:80 -e DB_NAME=your-db-name -e WP_HOME=your-wordpress-site.local adamyeats/docker-nginx-hhvm-bedrock
... via docker-compose
Example docker-compose.yml
for bedrock
:
wp:
image: adamyeats/docker-nginx-hhvm-bedrock
ports:
- "80:80"
links:
- db:mysql
- memcached:memcached # Optional
volumes:
- .:/var/www/html
environment:
DB_NAME: my_wordpress_project
db:
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: root
memcached: # Optional, recommeded for W3 Cache users
image: memcached
Run docker-compose up
, wait for it to initialize completely, and visit http://host-ip
. Don't worry about any Can't connect to MySQL server on 'mysql
messages in STDOUT
if you're using Compose; sometimes the web process initializes before the DB process, and the script that creates your database if it doesn't exist complains that it can't find your DB. That'll fix itself in a few seconds.