Last active
August 16, 2018 06:28
-
-
Save ryonakae/e2c057715c50c56d1556c5e6c08eeff4 to your computer and use it in GitHub Desktop.
WordPress + MySQLの最小構成
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: '3' | |
services: | |
wordpress: | |
image: wordpress:latest | |
ports: | |
- 9000:80 | |
environment: | |
WORDPRESS_DB_PASSWORD: hoge | |
depends_on: | |
- mysql | |
mysql: | |
image: mysql:5.7 | |
environment: | |
MYSQL_ROOT_PASSWORD: hoge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mysql:latest
だとデータベース接続エラーになるので、5.7
を指定するhttp://localhost:9000
でアクセス