Skip to content

Docker Install Instructions

Nick Ruest edited this page May 11, 2018 · 2 revisions

Docker Install Instructions

By Samantha Fritz (Archives Unleashed, University of Waterloo)

This quick guide will walk through how to install Docker for Mac users

Resources

Install Docker

  1. To install Docker for a Mac OS, use this link. Scroll down the page to select Docker CE for Mac (Stable) install-2

  2. From the downloads folder, double click to start installation (.dmg file) install-3

  3. Once file has been verified you can drag and drop into your applications folder, then launch application. install-4

Please note, depending on your security preferences a notice may show up warning you, you are about to open an application from the web. Select open to continue.

install-5

  1. The Docker icon should appear in your menu bar along the top of your screen. When you click on the icon, there should be a green dot indicating docker is running install-6 install-7

Now that the Docker application is installed you can log in with your Docker IDif you have one. You can create one at https://cloud.docker.com

Run Docker and Install AUT

  1. Open your terminal and try out some Docker commands. On a Mac, you can find a terminal window by going to your Applications Folder, selecting "Utilities," and then opening up "Terminal.""

Try running the following two commands:

Command Purpose
docker version to check that you have the latest release installed
docker run hello-world to verify that Docker is pulling images and running as expected

install-8

  1. Now you're ready to install AUT. Type the following command:
docker run --rm -it archivesunleashed/docker-aut

This will take a while to download and install. Eventually, you'll hopefully see:

Welcome to
      ____              __
     / __/__  ___ _____/ /__
    _\ \/ _ \/ _ `/ __/  '_/
   /___/ .__/\_,_/_/ /_/\_\   version 2.1.1
      /_/

Using Scala version 2.11.8 (OpenJDK 64-Bit Server VM, Java 1.8.0_151)
Type in expressions to have them evaluated.
Type :help for more information.

scala>

You're now ready for the workshop!

Clone this wiki locally