Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 1.4 KB

setup.LinuxDesktop.md

File metadata and controls

65 lines (45 loc) · 1.4 KB

{% include nav.html %}

Linux Desktop setup for Docker DSpace

Install Git

Instructions will vary based on your Linux distribution. These instructions have not been tested. Please report your results with these instructions.

CentOS

sudo yum install git

Debian, Ubuntu

sudo apt-get install git

Fedora

sudo dnf install git

Install Docker CE for your Linux distribution

  • CentOS
  • Debian
  • Ubuntu
  • Fedora
    • Note: current docker-compose file are not compatible with selinux. Consider disabling selinux for testing.

Verify Running Docker from your Terminal

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

Enter echo hello then enter exit

root@653eeaeb274b:/# echo hello
hello
root@653eeaeb274b:/# exit
exit

Download DSpace Docker Compose Files

cd
git clone https://github.com/DSpace-Labs/DSpace-Docker-Images.git
cd DSpace-Docker-Images/docker-compose-files/dspace-compose

Verify Docker Compose

Start Using DSpace-Docker