Created
December 22, 2016 18:20
-
-
Save pradeep1991singh/15692a48dc082e27b11f3ac88aaf240f to your computer and use it in GitHub Desktop.
docker compose file for wordpress-mysql link
This file contains 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: '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