Our goal is to provide a practical, reusable reference environment for applications. The first step is providing an on-ramp for Hyrax engine development. Then providing help with Hyrax-based application development. Finally, providing better guidance around deployment.
The Hyrax Engine Development is further along than the Docker Image for Hyrax-based Applications which is further along than Deploying to Production.
There are three options for development environments to run:
- Dassie is the default internal test app that will run an ActiveFedora-based Hyrax web application using Fedora 4 as the backend storage. See Troubleshooting Dassie if you encounter any issues.
- Koppie is a newer internal test app that is a Valkyrie-based Hyrax web application that runs with PostGres as backend storage. It does not run ActiveFedora or use Fedora 4. See Troubleshooting Koppie if you encounter any issues.
- Sirenia is Koppie but with Valkyrie configured to use Fedora 6 metadata and storage adapters.
We support a docker compose
-based development environment for folks working on
the Hyrax engine. This environment is substantially more like a Hyrax production
setup than the older fedora_wrapper
/solr_wrapper
approach.
First, make sure you have installed Docker. Then clone the Hyrax repository.
Within your cloned repository, tell Docker to get started installing your development environment:
docker compose build
docker compose up
This starts containers for:
- a
hyrax
test application (.dassie
); - Fedora
- Solr
- Postgresql
- Redis
- Memcached
- SideKiq (for background jobs)
- Chrome (for feature tests)
It also runs database migrations. This will also bring up a development application on http://localhost:3000
.
To stop the containers for the Hyrax-based application, type Ctrl+c. To restart the containers you need only run docker compose up
.
Note: Starting and stopping Docker in this way will preserve your data between restarts.
With docker compose up
running, any changes you make to your cloned Hyrax code-base should show up in http://localhost:3000
; There may be cases where you need to restart your test application (e.g. stop the containers and start them up again).
Any changes you make to Hyrax should be tested. You can run the full test suite using the following command:
docker compose exec -w /app/samvera/hyrax-engine app sh -c "bundle exec rspec"
Let's break down the above command:
docker compose exec
- Tell docker to run the following:
-w /app/samvera/hyrax-engine
- In the working directory "/app/samvera/hyrax-engine" (e.g. your cloned Hyrax repository)
app
- of the container named "app"
sh -c
- run the following shell script
"bundle exec rspec"
- run the rspec test suite
Note: The bundle exec rspec
portion of the command runs the whole test suite. See the rspec command documentation for how to refine your test runs.
As a developer, you may need to run commands against the Hyrax-based application and/or the Hyrax engine. Examples
of those commands are rails db:migrate
and rspec
. You would run rails db:migrate
on the Hyrax-based
application, and rspec
on the Hyrax engine.
In the engine development app
container, the .dassie
test Hyrax-based application is setup as a docker
bind mount to /app/samvera/hyrax-webapp
, and your local development copy of Hyrax (eg. the clone samvera/hyrax) is bound to
/app/samvera/hyrax-engine
. Those directories are defined as part of the Dockerfile configuration.
.
What does this structure mean? Let's look at an example. The following command will list the rake tasks for the Hyrax-based application running in Docker:
docker compose exec -w /app/samvera/hyrax-webapp app sh -c "bundle exec rake -T"
And this command lists the rake tasks for the Hyrax engine that is in Docker:
docker compose exec -w /app/samvera/hyrax-engine app sh -c "bundle exec rake -T"
In the two examples, note the difference in the -w
switch. In the first case, it's referencing the Hyrax-based application. In the latter case, it's referencing the Hyrax engine.
If you are interested in running Hyrax in debug mode, this requires a somewhat different approach than running Hyrax bare-metal. You need to use docker attach
to debug the running docker instance.
- With
docker compose up
running open a new Terminal session. - In that new Terminal session, using
docker container ls
find the "CONTAINER ID" for thehyrax-engine-dev
. - With the "CONTAINER ID", run
docker attach <CONTAINER ID>
.
This advice comes from Debugging Rails App With Docker Compose: How to use Byebug in a dockerized rails app.
With docker compose up
running, if you see the following, then there may be issues with file permissions:
db_migrate_1 | waiting for solr:8983
db_migrate_1 | nc: bad address 'solr'
Check the Docker application logs and look for permission errors:
Executing /opt/docker-solr/scripts/precreate-core hyrax_test /opt/solr/server/configsets/hyraxconf
cp: cannot create directory '/var/solr/data/hyrax_test': Permission denied
The solution that appears to work is to docker compose down --volumes
; This will tear down the docker instance, and remove the volumes. You can then run docker compose up
to get back to work. Note: the --volumes
switch will remove all custom data.
If you encounter errors running docker compose build
, try running bundle update
in ./hyrax
as well as within ./hyrax/.dassie
. That can help clear up the problem of a failure to build a particular gem.
If any of the services fail to start on docker compose up
, try clearing out any Gemfile.lock
files that might exist in ./hyrax
or ./hyrax/.dassie
and run docker compose build
again, then docker compose up
again.
Build docker images for Koppie: docker compose -f docker-compose-koppie.yml build
Start Koppie: docker compose -f docker-compose-koppie.yml up
This starts containers for:
- a
hyrax
test application (.koppie
); - Solr
- Postgresql
- Redis
- Memcached
- SideKiq (for background jobs)
- Chrome (for feature tests)
It also runs database migrations. This will also bring up a development application on http://localhost:3001
.
To stop the containers for the Hyrax-based application, type Ctrl+c. To restart the containers run docker compose -f docker-compose-koppie.yml up
.
Note: Starting and stopping Docker in this way will preserve your data between restarts.
Koppie runs as a different project than Dassie, so it should be possible to run both concurrently (assuming your workstation has enough RAM).
Currently Koppie should not be used for running specs. See Code Changes and Testing under Dassie instead until the specs can be updated for a valkyrie only environment.
docker compose -f docker-compose-koppie.yml up
docker compose -f docker-compose-koppie.yml exec app bundle exec rails c
If the postgres service logs show permissions errors, there may be old data from alternate versions of the postgres image. The old data volumes can deleted by using docker compose -f docker-compose-koppie.yml down -v
Errors such as exec /app/samvera/hyrax-entrypoint.sh: no such file or directory
in the app, sidekiq and db_migrate services may indicate an outdated cached hyrax-base image layer was used to build the koppie image. Try docker compose -f docker-compose-koppie.yml build --no-cache
to rebuild all the image layers.
It was also seen on a Windows 10 host and was resolved by using the git --core.autocrlf
option when cloning the repo.
We also provide a base image which can be reused for your Hyrax applications: hyrax
.
echo "FROM samveralabs/hyrax" > Dockerfile
This is for applications that mount Hyrax and is separate from the docker containers for Hyrax engine development.
Sirenia uses the same image as koppie. If you have not already done so, follow the build instructions for koppie above.
Start Sirenia: docker compose -f docker-compose-sirenia.yml up
This starts containers for:
- a
hyrax
test application (.sirenia
); - Fedora
- Solr
- Postgresql
- Redis
- Memcached
- SideKiq (for background jobs)
- Chrome (for feature tests)
It also runs database migrations. This will also bring up a development application on http://localhost:3002
.
To stop the containers for the Hyrax-based application, type Ctrl+c. To restart the containers run docker compose -f docker-compose-sirenia.yml up
.
Note: Starting and stopping Docker in this way will preserve your data between restarts.
Sirenia runs as a different project than Dassie and Koppie, so it should be possible to run both concurrently (assuming your workstation has enough RAM).
Currently Sirenia should not be used for running specs. See Code Changes and Testing under Dassie instead until the specs can be updated for a valkyrie only environment.
docker compose -f docker-compose-sirenia.yml up
docker compose -f docker-compose-sirenia.yml exec app bundle exec rails c
We publish several Hyrax images to the GitHub container registry under the Samvera organization. To build them:
export HYRAX_VERSION=v5.0.0 # or desired version
git checkout hyrax-$HYRAX_VERSION
docker build --target hyrax-base --tag ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD) .
docker tag ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD) ghcr.io/samvera/hyrax/hyrax-base:$HYRAX_VERSION
docker push ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD)
docker push ghcr.io/samvera/hyrax/hyrax-base:$HYRAX_VERSION
Do the same for hyrax-worker-base
.
We also publish an image for the stable test application dassie
:
docker build --target hyrax-engine-dev --tag ghcr.io/samvera/hyrax/dassie:$(git rev-parse HEAD) .
docker tag ghcr.io/samvera/hyrax/dassie:$(git rev-parse HEAD) ghcr.io/samvera/hyrax/dassie:$HYRAX_VERSION
docker push ghcr.io/samvera/hyrax/dassie:$(git rev-parse HEAD)
docker push ghcr.io/samvera/hyrax/dassie:$HYRAX_VERSION
Also under development is a Helm chart, which we are developing into a robust, configurable production environment for Hyrax applications.
If you have a Kubernetes cluster configured (kubectl cluster-info
), you can
deploy the dassie
test applications with:
helm dependency update chart/hyrax
helm install -n hyrax --set image.tag=(git rev-parse HEAD) dassie chart/hyrax