Skip to content

kietnguyen/docker-nginx-hhvm-bedrock

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-nginx-hhvm-bedrock

🚢 a docker image for wordpress sites built with bedrock

What is 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.

Why use this image?

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.

How to use this image

Start a bedrock server instance

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

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.

About

🚢 a docker image for wordpress sites built with bedrock.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 74.1%
  • PHP 25.9%