Skip to content

Instantly share code, notes, and snippets.

@pradeep1991singh
Created December 22, 2016 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pradeep1991singh/15692a48dc082e27b11f3ac88aaf240f to your computer and use it in GitHub Desktop.
Save pradeep1991singh/15692a48dc082e27b11f3ac88aaf240f to your computer and use it in GitHub Desktop.
docker compose file for wordpress-mysql link
version: '2'
services:
wordpress:
image: wordpress
ports:
- 8080:80
environment:
WORDPRESS_DB_PASSWORD: admin123
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: admin123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment