Complete the command to pull the latest Ubuntu image from Docker Hub.
docker [1] ubuntuThe docker pull command downloads an image from Docker Hub to your local machine.
Complete the command to pull the Node.js image with version 18 from Docker Hub.
docker pull node:[1]Tags specify the version of the image. Here, '18' pulls Node.js version 18.
Fix the error in the command to pull the Alpine image from Docker Hub.
docker [1] alpineThe correct command is docker pull alpine. Misspelling 'pull' causes an error.
Fill both blanks to pull the Python image with version 3.12 from Docker Hub.
docker [1] python:[2]
Use docker pull python:3.12 to get Python version 3.12 image.
Fill all three blanks to pull the official Redis image with version 7.0.11 from Docker Hub.
docker [1] redis:[2].[3]
The command docker pull redis:7.0.11 pulls Redis version 7.0.11 image.