-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use docker.io prefix for images on Docker Hub #1687
base: main
Are you sure you want to change the base?
Conversation
@alanorth : This appears to cause all e2e (integration tests) to fail, as it cannot pull down the docker image via GitHub actions. Error is:
|
Given that error and the changes, I think its the quotes breaking e2e rather than the name format itself.. |
0848cf1
to
52f11ff
Compare
@kshepherd on second inspection let me change the quoting for that one. Perhaps it's something with the way Yaml interprets quoted values. I just updated the branch to main and force-pushed the branch with the new attempt. |
Hi @alanorth, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
Docker assumes docker.io by default, but there are other container runtimes (for example Podman) where this should be explicit. It is better to use fully-qualified image names to support other runtime environments in the future.
52f11ff
to
eab286b
Compare
Hi @alanorth, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
References
Add references/links to any related issues or PRs. These may include:
Description
Docker assumes images are hosted on docker.io by default, but there are other container runtimes (for example Podman). It is better to use fully-qualified image names to support other runtime environments in the future.
Instructions for Reviewers
Try
docker-compose -f docker-compose.yml build
, up, down, etc for each Docker compose file.List of changes in this PR:
Checklist
This checklist provides a reminder of what we are going to look for when reviewing your PR. You need not complete this checklist prior to creating your PR (draft PRs are always welcome). If you are unsure about an item in the checklist, don't hesitate to ask. We're here to help!
yarn run lint
package.json
), I've made sure their licenses align with the DSpace BSD License based on the Licensing of Contributions documentation.