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
# start the ssh-agent in the background | |
eval $(ssh-agent -s) | |
# delete all cached keys before | |
ssh-add -D | |
# add key | |
ssh-add ~/.ssh/id_rsa_username |
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
#Exclude from the management of Git | |
git config --global alias.ignore 'update-index --skip-worktree' | |
#Restore to the management of Git | |
git config --global alias.unignore 'update-index --no-skip-worktree' | |
#HConfirm ignoged files | |
git config --global alias.ignored '!git ls-files -v | grep ^S' |
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
FROM openjdk | |
MAINTAINER Nitesh Virani <[email protected]> | |
ADD target/service-0.0.1-SNAPSHOT.jar app.jar | |
ENTRYPOINT ["java", "-jar", "/app.jar"] |