Prepare Your Laptop
- You will be learning the practical modules on your own laptops.
- Prepare your laptop with the following three tasks well before the workshop.
Task 1: Update System
- Make sure your laptop is up to date and secure. You can do this by updating your system software on Mac, Windows or Linux as follows:
Task 2: Install Docker
- Install Docker on your laptop by following these intructions for your laptop:
- Docker Desktop is available for Mac, Linux and Windows
- Alternatively, On Linux Install Docker Engine
Task 3: Check Docker Works
-
Check that your docker installation was successful
-
Open your CLI terminal and start a container by running the command:
docker run hello-world
- You should receive a
Hello from Docker!
in the output.
- You should receive a
-
Run
welcome-to-docker
as daemon mapping port 80 to 8080.docker run -d -p 8080:80 docker/welcome-to-docker
- Visit http://localhost:8080 in your browser to access this container and see a welcome message.
- Identify and Stop the running
welcome-to-docker
container.
-
-
[OPTIONAL] You can checkout command-line and docker pages we will be going through.