mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
24 lines
490 B
YAML
24 lines
490 B
YAML
version: "3.7"
|
|
|
|
networks:
|
|
dspacenet:
|
|
|
|
services:
|
|
dspace-cli:
|
|
networks:
|
|
dspacenet: {}
|
|
environment:
|
|
- LOADASSETS=https://www.dropbox.com/s/zv7lj8j2lp3egjs/assetstore.tar.gz?dl=1
|
|
entrypoint:
|
|
- /bin/bash
|
|
- '-c'
|
|
- |
|
|
if [ ! -z $${LOADASSETS} ]
|
|
then
|
|
curl $${LOADASSETS} -L -s --output /tmp/assetstore.tar.gz
|
|
cd /dspace
|
|
tar xvfz /tmp/assetstore.tar.gz
|
|
fi
|
|
|
|
/dspace/bin/dspace index-discovery
|