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
| #!/bin/bash | |
| # with ansible role from https://galaxy.ansible.com/wtanaka/vagrant | |
| ansible-galaxy install wtanaka.vagrant | |
| #-------------- | |
| # or manually | |
| version=1.9.1 |
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
| #/!bin/bash | |
| [ $# -lt 1 ] && echo "usage: $(basename $0) <target_ssh_user@target_ssh_hostname>" && exit 1; | |
| target="$1" | |
| docker pull alpine | |
| for volume in $(docker volume ls -q) | |
| do |
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
| !#/bin/bash | |
| git remote add github git@github.com:SeekersAdvisorsLabs/NEW_REPO.git | |
| git push -u github master ; git push --all github; git push --tags github |
NewerOlder