Created
December 6, 2018 07:20
-
-
Save sezemiadmin/e875af424b26c02dad118cddd8f7745e to your computer and use it in GitHub Desktop.
Docker を使ってみよう (スモールスタート編) のサンプル
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
| mysql: | |
| image: mysql:5.7 | |
| environment: | |
| MYSQL_ROOT_PASSWORD: P@ssw0rd | |
| wordpress: | |
| image: wordpress | |
| links: | |
| - mysql:mysql | |
| ports: | |
| - "8888:80" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment