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
Cluster: | |
Type: AWS::RDS::DBCluster | |
Properties: | |
DatabaseName: db_name | |
Engine: aurora | |
MasterUsername: user | |
MasterUserPassword: password | |
Database: | |
Type: AWS::RDS::DBInstance | |
Properties: |
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
# Docker environment | |
function dbash() | |
{ | |
docker exec -it $1 bash | |
} | |
alias dockbuild='docker build . -f $1 -t $2' | |
alias dex='docker exec -it ' | |
alias dps='docker ps ' |