Skip to content

Instantly share code, notes, and snippets.

@minimum2scp
Created April 11, 2015 06:55
Show Gist options
  • Select an option

  • Save minimum2scp/3353fc9632cbb8b3cb33 to your computer and use it in GitHub Desktop.

Select an option

Save minimum2scp/3353fc9632cbb8b3cb33 to your computer and use it in GitHub Desktop.
wordpress を docker-compose でさくっと動かす
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