Created
April 11, 2015 06:55
-
-
Save minimum2scp/3353fc9632cbb8b3cb33 to your computer and use it in GitHub Desktop.
wordpress を docker-compose でさくっと動かす
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
| wordpress: | |
| image: wordpress:latest | |
| links: | |
| - db:mysql | |
| ports: | |
| - 8080:80 | |
| environment: | |
| - WORDPRESS_DB_USER=wordpress | |
| - WORDPRESS_DB_PASSWORD=wordpress | |
| db: | |
| image: mysql:5.5 | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=password | |
| - MYSQL_USER=wordpress | |
| - MYSQL_PASSWORD=wordpress | |
| - MYSQL_DATABASE=wordpress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment