Skip to content

Instantly share code, notes, and snippets.

@sezemiadmin
Created December 6, 2018 07:20
Show Gist options
  • Select an option

  • Save sezemiadmin/e875af424b26c02dad118cddd8f7745e to your computer and use it in GitHub Desktop.

Select an option

Save sezemiadmin/e875af424b26c02dad118cddd8f7745e to your computer and use it in GitHub Desktop.
Docker を使ってみよう (スモールスタート編) のサンプル
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