Created
October 22, 2017 00:23
-
-
Save felipeelia/a39b0e223996c44fc2593ffc9ca76c30 to your computer and use it in GitHub Desktop.
Instalação automatizada do WordPress em pt-BR com WP-CLI e bash em docker. Ver também: https://gist.github.com/EliaBR/199f7e1356c63cab88b25710286414b1
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
export wp_docker='sudo docker exec -i docker_wordpress_1 wp' | |
export DB_HOST="mysql" | |
export DB_USER="wordpress" | |
export DB_PASS="wordpress" | |
export DB_NAME="wordpress" | |
export DOCKER_INST=1 | |
source $( dirname "${BASH_SOURCE[0]}" )/wpinstall.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment