Skip to content

Instantly share code, notes, and snippets.

@piavgh
Created August 17, 2020 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piavgh/ab40d9dd59cda33b6dfbcd09ec77d2fe to your computer and use it in GitHub Desktop.
Save piavgh/ab40d9dd59cda33b6dfbcd09ec77d2fe to your computer and use it in GitHub Desktop.
Add a Docker user with the name from command line
#!/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