Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Forked from crissanis/mysql wordpress docker
Created October 23, 2019 16:16
Show Gist options
  • Save jrichardsz/5c05f7368d805f8d4b064d8b10326698 to your computer and use it in GitHub Desktop.
Save jrichardsz/5c05f7368d805f8d4b064d8b10326698 to your computer and use it in GitHub Desktop.
mysql wordpress docker
docker run --name eduxdb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=noloveas -d mysql:5.7
docker run --name some-wordpress -p 8080:80 -e WORDPRESS_DB_HOST=10.16.211.194:3306 \
-e WORDPRESS_DB_USER=root -e WORDPRESS_DB_PASSWORD=noloveas -d wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment