Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.

Latest commit

 

History

History
63 lines (46 loc) · 1.25 KB

File metadata and controls

63 lines (46 loc) · 1.25 KB

{% include nav.wkshop.html %}

Exercise 1: Verify Installation

Verify Git Install

git version

Verify Docker Installation

docker version

Verify Docker Compose Installation

docker-compose version

Check terminal access to a Docker image

We will explain these commands in more detail later. Please run each step to verify that your configuration is ready for the later exercises.

Linux or MacOS

docker run -it --rm ubuntu /bin/bash

Windows

winpty docker run -it --rm ubuntu //bin/bash

You will see a different shell prompt in your terminal. Enter exit to exit the shell.

Verify that you have DSpace Docker Resources Locally

cd
cd DSpace-Docker-Images/docker-compose-files/dspace-compose
git pull
ls

Several files should be present. If you do not see them, revisit the setup page.

docker-compose config

This will output a screenful of information. To simplify this output, run the following command.

docker-compose config | grep container_name

You should see the following output

    container_name: dspace
    container_name: dspacedb

These are the default (DSpace 6 containers that will be started in Docker.)