Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
1. Running Docker
To start the docker daemon run:
...
Code Block |
---|
user@imx8mpnavq:~$ sudo docker info Client: Context: default Debug Mode: false Server: Containers: 3 Running: 0 Paused: 0 Stopped: 3 Images: 1 Server Version: 20.10.21 ... Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false |
2. Running “Hello, world!”
Pull and run the first container, hello-world
:
Code Block |
---|
sudo docker run hello-world |
3. Post-install Configuration
If you want to run docker without root privileges, add user
to the docker
group:
...