Created
August 17, 2020 14:43
-
-
Save piavgh/ab40d9dd59cda33b6dfbcd09ec77d2fe to your computer and use it in GitHub Desktop.
Add a Docker user with the name from command line
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
#!/usr/bin/env bash | |
help() { | |
cat <<EOF | |
Arguments: | |
+\$1 given username | |
Usage example: | |
$ ./add-docker-user.sh jenkins | |
EOF | |
} | |
# init vars | |
USR=$1 | |
if [[ -z $USR ]]; then | |
help | |
exit 1 | |
fi | |
# generate SSH key pairs | |
# REF. https://stackoverflow.com/a/43235320/1235074 | |
ssh-keygen -q -N '' -m PEM -t rsa -f "$HOME/.ssh/id_rsa_$USR" <<< ""$'\n'"y" 2>&1 >/dev/null | |
# create new user | |
useradd -m -d /home/$USR -s /bin/bash $USR | |
usermod -aG docker $USR | |
mkdir /home/$USR/.ssh | |
touch /home/$USR/.ssh/authorized_keys | |
cat "$HOME/.ssh/id_rsa_$USR.pub" > /home/$USR/.ssh/authorized_keys | |
ssh -i $HOME/.ssh/id_rsa_$USR $USR@localhost "docker --version && echo '>>> DONE. New user added'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment