Last active
August 17, 2017 19:02
-
-
Save rahman541/5af9ae0f477fbc7c758541de4836c088 to your computer and use it in GitHub Desktop.
WordPress in 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
docker run --rm -d --name mariadb -p 8081:3306 -e MYSQL_ROOT_PASSWORD=wp;MYSQL_DATABASE=wp mariadb:10.3 | |
docker run -d --rm --link mariadb:mysql --name wp -p 8080:80 wordpress:4.8-apache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment