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
#!/bin/bash | |
# Simply run | |
docker run --rm -v $(pwd):/app -w /app composer install |
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
# Run npm install on docker single command | |
docker run --rm -v $(pwd):/app -w /app node npm install |
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
CREATE USER 'nombre_usuario'@'localhost' IDENTIFIED BY 'tu_contrasena'; | |
GRANT ALL PRIVILEGES ON * . * TO 'nombre_usuario'@'localhost'; | |
FLUSH PRIVILEGES; |
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
<?php | |
namespace Deployer; | |
require 'recipe/common.php'; | |
// Configuration | |
set('repository', '[email protected]:username/repo.git'); | |
set('shared_files', ['config/parameters.yml']); |