-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ The "demo" compose file describes an early system meant to demonstrate some new | |
|
||
Docker compose works as normal, but for the demo you need to specify both correct `yml` file and env file. | ||
|
||
In order to run a local instance **_without_** deposit-service and dspace, you can run: | ||
In order to run a local instance **_without_** deposit-service, ftp, and dspace, you can run: | ||
``` | ||
docker compose up -d --no-build --quiet-pull --pull always | ||
``` | ||
|
@@ -15,19 +15,19 @@ docker compose -p pass-docker down -v | |
``` | ||
Note the `-v` to remove the volumes, **this is critical** so on subsequent starts, user data is not duplicated. | ||
|
||
In order to run a local instance **_with_** deposit-service and dspace, you can run: | ||
In order to run a local instance **_with_** deposit-service, ftp, dspace, you can run: | ||
``` | ||
docker compose -p pass-docker -f docker-compose.yml -f docker-compose-deposit.yml -f docker-compose-dspace.yml up -d --no-build --quiet-pull | ||
``` | ||
|
||
Run the following to create a test admin user in dspace: | ||
``` | ||
docker-compose -p pass-docker -f dspace-cli.yml run --rm dspace-cli create-administrator -e [email protected] -f admin -l user -p admin -c en | ||
docker compose -p pass-docker -f dspace-cli.yml run --rm dspace-cli create-administrator -e [email protected] -f admin -l user -p admin -c en | ||
``` | ||
|
||
Run the following to load sample data into dspace: | ||
``` | ||
docker-compose -p pass-docker -f dspace-cli.yml -f dspace-cli.ingest.yml run --rm dspace-cli | ||
docker compose -p pass-docker -f dspace-cli.yml -f dspace-cli.ingest.yml run --rm dspace-cli | ||
``` | ||
|
||
## Services: | ||
|