Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Last active March 31, 2016 16:01
Show Gist options
  • Save wwwbruno/c1bf04433af7b5baa96ff9ed8c485573 to your computer and use it in GitHub Desktop.
Save wwwbruno/c1bf04433af7b5baa96ff9ed8c485573 to your computer and use it in GitHub Desktop.
WordPress Dockerfiles
version: '2'
services:
web:
build: .
command: php -S 0.0.0.0:8000 -t /code/
ports:
- "8000:8000"
depends_on:
- db
volumes:
- .:/code
db:
image: orchardup/mysql
environment:
MYSQL_DATABASE: wordpress
FROM orchardup/php5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment