Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Warning
titleThis approach is not recommended

As of Dec 2018, the Codenvy service appears to no longer be supported.


Table of Contents

Overview

Info
titleUpdated Resource

See https://dspace-labs.github.io/DSpace-Docker-Images/add-ons/codenvy-scripts/


The Codenvy Service provides a cloud-hosted instance of the Eclipse Che editor and and a cloud hosted service for running Docker containers.

...

Here is a docker compose configuration that I wish to replicate


Code Block
languageyml
titleDocker Compose Configuration to Port to Codenvy
services:
  dspacedb:
    image: dspace/dspace-postgres-pgcrypto
    volumes:
      - pgdata:/pgdata

  dspace:
    image: "dspace/dspace:dspace-6_x"
    ports:
      - 8080:8080
    volumes:
      - "assetstore:/dspace/assetstore"
      - "solr:/dspace/solr"
    depends_on:
      - dspacedb

The syntax is a subset of what is available to docker-compose. The flattening of the YAML makes it difficult to edit. 

...

After the workspace starts, the public address for this "server" will be exposed on the workspace configration screen.

enter image description hereImage RemovedSee the instructions above for finding this URL.