File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #
2+ # The contents of this file are subject to the license and copyright
3+ # detailed in the LICENSE and NOTICE files at the root of the source
4+ # tree and available online at
5+ #
6+ # http://www.dspace.org/license/
7+ #
8+
9+ #
10+ # This is a copy of the docker-compose-cli.yml that is available in the DSpace/DSpace
11+ # (Backend) at:
12+ # https://github.com/DSpace/DSpace/blob/main/docker-compose-cli.yml
13+ #
14+ # Therefore, it should be kept in sync with that file
15+ networks :
16+ # Default to using network named 'dspacenet' from docker-compose-rest.yml.
17+ # Its full name will be prepended with the project name (e.g. "-p d7" means it will be named "d7_dspacenet")
18+ # If COMPOSITE_PROJECT_NAME is missing, default value will be "docker" (name of folder this file is in)
19+ default :
20+ name : ${COMPOSE_PROJECT_NAME:-docker}_dspacenet
21+ external : true
122services :
223 dspace-cli :
324 image : " ${DOCKER_OWNER:-dataquest}/dspace-cli:${DSPACE_VER:-dspace-7_x}"
@@ -32,19 +53,14 @@ services:
3253 assetstore__P__s3__P__pathStyleAccessEnabled : ${S3_PATH_STYLE_ACCESS:-false}
3354 assetstore__P__s3__P__endpoint : ${S3_ENDPOINT:-}
3455 volumes :
35- - " assetstore:/dspace/assetstore"
36- - dspace_cli_logs:/dspace/log
37- # - ./local.cfg:/dspace/config/local.cfg
56+ - " assetstore:/dspace/assetstore"
57+ - dspace_cli_logs:/dspace/log
58+ - ./local.cfg:/dspace/config/local.cfg
3859 entrypoint : /dspace/bin/dspace
3960 command : help
40- networks :
41- - dspacenet
4261 tty : true
4362 stdin_open : true
4463
4564volumes :
4665 assetstore :
4766 dspace_cli_logs :
48-
49- networks :
50- dspacenet :
You can’t perform that action at this time.
0 commit comments