Skip to content

Instantly share code, notes, and snippets.

@mrunalp
Created June 18, 2014 16:47
Show Gist options
  • Save mrunalp/24f5a8d6c84573806e64 to your computer and use it in GitHub Desktop.
Save mrunalp/24f5a8d6c84573806e64 to your computer and use it in GitHub Desktop.
[root@localhost ~]# docker run -it --rm busybox /bin/sh
/ # command -v groupadd
/ # echo $?
127
/ # addgroup -g 1003 container
/ # echo $?
0
/ # adduser -u 1003 -g 1003 container
adduser: uid '1003' in use
/ # echo $?
1
/ #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment