diff --git a/silverpeas/mailing-list.md b/silverpeas/mailing-list.md deleted file mode 100644 index c0f44941d..000000000 --- a/silverpeas/mailing-list.md +++ /dev/null @@ -1 +0,0 @@ -For general questions about Silverpeas, see our [user mailing list](https://groups.google.com/forum/#!forum/silverpeas-users). diff --git a/silverpeas/user-feedback.md b/silverpeas/user-feedback.md new file mode 100644 index 000000000..a623575fa --- /dev/null +++ b/silverpeas/user-feedback.md @@ -0,0 +1,17 @@ +## Issues + +If you have any problems with or questions about this image, please contact us through a [GitHub issue](%%GITHUB-REPO%%/issues). If the issue is related to a CVE, please check for [a `cve-tracker` issue on the `official-images` repository first](https://github.com/docker-library/official-images/issues?q=label%3Acve-tracker). + +You can also reach many of the official image maintainers via the `#docker-library` IRC channel on [Freenode](https://freenode.net). + +For general questions about Silverpeas, see our [user mailing list](https://groups.google.com/forum/#!forum/silverpeas-users). + +## Contributing + +You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can. + +Before you start to code, we recommend discussing your plans through a [GitHub issue](%%GITHUB-REPO%%/issues), especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing. + +## Documentation + +Documentation for this image is stored in the [`%%REPO%%/` directory](https://github.com/docker-library/docs/tree/master/%%REPO%%) of the [`docker-library/docs` GitHub repo](https://github.com/docker-library/docs). Be sure to familiarize yourself with the [repository's `README.md` file](https://github.com/docker-library/docs/blob/master/README.md) before attempting a pull request. diff --git a/update.sh b/update.sh index 196ce3628..581f23f3a 100755 --- a/update.sh +++ b/update.sh @@ -30,13 +30,6 @@ for repo in "${repos[@]}"; do if [ -e "$repo/content.md" ]; then githubRepo="$(cat "$repo/github-repo")" - mailingList="$(cat "$repo/mailing-list.md" 2>/dev/null || true)" - if [ "$mailingList" ]; then - mailingList=" $mailingList " - else - mailingList=' ' - fi - dockerVersions="$(cat "$repo/docker-versions.md" 2>/dev/null || cat "$helperDir/docker-versions.md")" userFeedback="$(cat "$repo/user-feedback.md" 2>/dev/null || cat "$helperDir/user-feedback.md")"