Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 549 Bytes

post_docker_install.md

File metadata and controls

33 lines (22 loc) · 549 Bytes

DeepRacer-For-Dummies - Post Docker Install

  1. Create the docker group.

    sudo groupadd docker
    
  2. Add your user to the docker group.

    sudo usermod -aG docker $USER
    
  3. Activate the changes to groups:

    sudo newgrp docker
    
  4. Verify that you can run docker commands without sudo.

    docker run hello-world
    
  5. Configure Docker to start on boot

    sudo systemctl enable docker
    

Back to readme