- Stop docker service
sudo systemctl stop docker.service docker.socket- Create a directory in home filesystem for docker images
| " .vimrc - Vim configuration file | |
| let mapleader=' ' | |
| filetype plugin on | |
| filetype indent on | |
| syntax enable | |
| runtime ftplugin/man.vim | |
| " Configuration Options | |
| set guicursor= |
| #!/usr/bin/env bash | |
| # Sample aws credentials file | |
| # [default] | |
| # credential_process = sh -c "$HOME/.local/bin/awscreds_lpass personal_aws_creds" | |
| readonly lastPassEntry=$1 | |
| readonly accessKeyId=$(lpass show --username "$lastPassEntry") | |
| readonly secretAccessKey=$(lpass show --password "$lastPassEntry") |