Last active
March 31, 2016 16:01
-
-
Save wwwbruno/c1bf04433af7b5baa96ff9ed8c485573 to your computer and use it in GitHub Desktop.
WordPress Dockerfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM orchardup/php5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment