App Icon Docker (Ubuntu 14.04): Documentation

Appliance Details

Please refer to the for documentation on how to reserve and provision resources. Use the image name Ubuntu-14-04-Docker.

The instructions below describe how to deploy a container with an Ubuntu image. For more documentation on how to use Docker, see their official website.

After boot, start the Docker service with: $ sudo systemctl start docker

To list all the available docker images: $ sudo docker images

To list all running containers: $ sudo docker ps -a

Search for a docker image; as an example, let’s search for Ubuntu: $ sudo docker search ubuntu

Pull an Ubuntu 14.04 Docker image: $ sudo docker pull ubuntu:14.04

Check your updated image list: $ sudo docker images

Create a container using the image you just pulled: $ sudo docker run -i -t /bin/bash

The above command should attach you to the container as root user. Exit the container by typing exit.

Check the list of containers on your system: $ sudo docker ps -a

Start and attach to the container again: $ sudo docker start $ sudo docker attach