Versions Compared

Key

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

...

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.