Created
June 18, 2014 16:47
-
-
Save mrunalp/24f5a8d6c84573806e64 to your computer and use it in GitHub Desktop.
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
[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