mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Update basic setup instructions
Without adding the user to the group you're going to hit nasty TLS errors. Figured I'd save the next guy the hassle. Problem more accurately described here: https://github.com/docker/docker/issues/5314 Signed-off-by: Jason Divock <jdivock@box.com>
This commit is contained in:
parent
5395cdcae5
commit
25d07511ed
1 changed files with 6 additions and 2 deletions
|
@ -28,7 +28,11 @@ Repository.
|
|||
your Amazon Linux instance should be running!
|
||||
3. SSH to your instance to install Docker :
|
||||
`ssh -i <path to your private key> ec2-user@<your public IP address>`
|
||||
4. Once connected to the instance, type
|
||||
4. Add the ec2-user to the docker group :
|
||||
`sudo usermod -a -G docker ec2-user`
|
||||
5. Restart the machine and log back in
|
||||
`sudo shutdown -r now`
|
||||
6. Once connected to the instance, type
|
||||
`sudo yum install -y docker ; sudo service docker start`
|
||||
to install and start Docker
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue