The "demo" compose file describes an early system meant to demonstrate some new technologies and services in PASS.
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, ftp, and dspace, you can run:
docker compose -f docker-compose.yml -f eclipse-pass.local.yml up -d --no-build --quiet-pull --pull always
In order to stop a local instance, you can run:
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, ftp, dspace, you can run:
docker compose -p pass-docker -f docker-compose.yml -f eclipse-pass.local.yml -f docker-compose-deposit.yml -f docker-compose-dspace.yml up -d --no-build --quiet-pull --pull always
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
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
In order to run a local instance with deposit-service, ftp, InvenioRDM, you can run:
Refer to invenio-rdm/README to ensure the prerequisites are met before running the commands below.
First, start the local test InvenioRDM by running the following command in the invenio-rdm
directory:
./build.sh
./start.sh
After the InvenioRDM service is up and running, run the following commands in the pass-docker
directory:
docker compose -p pass-docker -f docker-compose.yml -f eclipse-pass.local.yml -f docker-compose-deposit.yml -f docker-compose-deposit-invenio-rdm.yml up -d --no-build --quiet-pull --pull always
This service runs a Shibboleth Identity Provider using an image from [https://spaces.at.internet2.edu/display/ITAP/InCommon+Trusted+Access+Platform+Release].
Configuration files in the image are overridden on startup by using files in idp/
.
Environment variables:
IDP_HOST=http://localhost:9080
SP_LOGIN=http://localhost:8080/login/saml2/sso/pass
Separately there is a non-container environment variable IDP_INTERNAL_PORT
which is used to set the internal port on the IDP container which 9080 maps to.
The default is 8080. This can be used to make 9080 support https by setting it to 4443 in the docker compose environment. One way to do this is by adding
IDP_INTERNAL_PORT=4443
to the docker compose command. Note that -e
should not be used because it is for container environment variables.
This service is intended for testing only.
This service runs the 389 Directory Server which is a LDAP server. It is used by the IDP as a source of information on users.
The users in ldap/pass.ldif
are loaded on startup.
This service is intended for testing only.
Repository: https://github.com/eclipse-pass/pass-core Package: https://github.com/orgs/eclipse-pass/packages/container/package/pass-core-main
Presents a JSON:API window to the backend from behind the authentication layer. Swagger is not yet hooked up so is unreachable. Provides data and web APIs to the application.
Support SAML and HTTP basic authentication.
Environment variables:
PASS_CORE_BASE_URL=http://localhost:8080
: Used when generating JSON API relationship links. Needs to be absolute and must change to match deployment environmentPASS_CORE_POSTGRES_PORT=5432
PASS_CORE__USER=backend
PASS_CORE_PASSWORD=backend
PASS_CORE_APP_LOCATION=http://pass-ui:81/app/
: Resource location of pass ui resourcesPASS_CORE_APP_CSP=default-src 'self';
: Content Security Policy header valuePASS_CORE_IDP_METADATA=http://idp:8080/idp/shibboleth
: Resource location of IDP metadataPASS_CORE_SP_ID=https://sp.pass/shibboleth
: Identifier of pass-core as an SPPASS_CORE_SP_KEY=file:///path/key
: Resource location of SP keyPASS_CORE_SP_CERT=file:///path/cert
: Resource location of SP certificatePASS_CORE_LOGOUT_SUCCESS=/app/
: Location user is redirected after logoutPASS_CORE_LOGOUT_DELETE_COOKIES="JSESSIONID /,shib_idp_session /idp"
: Cookies to delete on logout, "name path" separated by commas.POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
JDBC_DATABASE_URL=jdbc:postgresql://postgres:5432/pass
JDBC_DATABASE_USERNAME=pass
JDBC_DATABASE_PASSWORD=moo
Pretty much an out-of-the-box PostgreSQL server. Only interacts with the pass-core
service.
Repository: https://github.com/eclipse-pass/pass-ui Package: https://github.com/orgs/eclipse-pass/packages/container/package/pass-ui
User interface for the PASS application. Currently does not handle environment variables nicely - they are baked into images at build time due. The environment variables in the demo environment should not need to be adjusted between different deployment environments.
Environment variables:
PASS_UI_PORT=81
PASS_API_NAMESPACE=data
PASS_UI_ROOT_URL=/app
STATIC_CONFIG_URL=/app/config.json
DOI_SERVICE_URL=/doiservice/journal
MANUSCRIPT_SERVICE_LOOKUP_URL=/downloadservice/lookup
MANUSCRIPT_SERVICE_DOWNLOAD_URL=/downloadservice/download
POLICY_SERVICE_POLICY_ENDPOINT=/policyservice/policies
POLICY_SERVICE_REPOSITORY_ENDPOINT=/policyservice/repositories
SCHEMA_SERVICE_URL=/schemaservice
USER_SERVICE_URL=/pass-user-service/whoami
A basic Docker image where we can run a curl
command to bootstrap the environment with data from demo_data.json
Repository: https://github.com/eclipse-pass/pass-acceptance-testing
There is a small set of end-to-end smoke tests that we can run against this environment for some validation of changes. These tests run automatically for new PRs that are opened against main
, but can also be run locally. In order to do this, you'll first need to clone the repository with the tests.
Once you have the repository, wait for the Docker Compose environment to start up and initialize then run the tests directly. From the pass-acceptance-testing
local repo, run:
yarn # Installs project dependencies
yarn run test # Runs tests