-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update readme and maintainer information to reference eclipse project
Signed-off-by: Lachlan Roberts <[email protected]>
- Loading branch information
1 parent
00556b2
commit 028a1a5
Showing
3 changed files
with
63 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# eclipse | ||
.classpath | ||
.project | ||
.settings | ||
|
||
# maven | ||
target/ | ||
*/src/main/java/META-INF/ | ||
*.versionsBackup | ||
*.releaseBackup | ||
bin/ | ||
|
||
# common junk | ||
*.log | ||
*.diff | ||
*.patch | ||
*.sw[a-p] | ||
*.bak | ||
*.backup | ||
*.debug | ||
*.dump | ||
.attach_pid* | ||
|
||
# vim | ||
.*.sw[a-p] | ||
*~ | ||
~* | ||
|
||
# intellij / android studio | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# Mac filesystem dust | ||
.DS_Store | ||
|
||
# pmd | ||
.pmdruleset | ||
.pmd | ||
|
||
# netbeans | ||
/nbproject | ||
|
||
# merge tooling | ||
*.orig | ||
|
||
# test generated content | ||
*/src/test/*/WEB-INF/lib/test*.jar | ||
.flattened-pom.xml |
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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# About this Repo | ||
|
||
[](https://travis-ci.org/appropriate/docker-jetty) | ||
|
||
This is the Git repo of the official Docker image for [jetty](https://registry.hub.docker.com/_/jetty/). | ||
|
||
This is the Git repo for the official images of [Jetty on Docker Hub](https://registry.hub.docker.com/_/jetty/). | ||
See the Hub page for the full readme on how to use the Docker image and for information regarding contributing and issues. | ||
|
||
The full readme is generated over in [docker-library/docs](https://github.com/docker-library/docs), | ||
specificially in [docker-library/docs/jetty](https://github.com/docker-library/docs/tree/master/jetty). | ||
specifically in [docker-library/docs/jetty](https://github.com/docker-library/docs/tree/master/jetty). | ||
|
||
The library definition files for the official jetty docker images can be found at [docker-library/official-images/library/jetty](https://github.com/docker-library/official-images/blob/master/library/jetty) | ||
|
||
## History | ||
This project was imported from [appropriate/docker-jetty](https://github.com/appropriate/docker-jetty), | ||
thanks to the efforts from [Appropriate](https://github.com/appropriate) and all other contributors who worked on this project. |
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 |
---|---|---|
|
@@ -12,11 +12,13 @@ cd "$(dirname "$(readlink -f "$BASH_SOURCE")")" | |
|
||
paths=( **/*/Dockerfile ) | ||
paths=( $( printf '%s\n' "${paths[@]%/Dockerfile}" | sort -t/ -k 1,1Vr -k 2,2 ) ) | ||
url='https://github.com/appropriate/docker-jetty.git' | ||
url='https://github.com/eclipse/jetty.docker.git' | ||
|
||
cat <<-EOH | ||
Maintainers: Mike Dillon <[email protected]> (@md5), | ||
Greg Wilkins <[email protected]> (@gregw) | ||
Maintainers: Greg Wilkins <[email protected]> (@gregw), | ||
Lachlan Roberts <[email protected]> (@lachlan-roberts) | ||
Olivier Lamy <[email protected]> (@olamy) | ||
Joakim Erdfelt <[email protected]> (@joakime) | ||
GitRepo: $url | ||
EOH | ||
|
||
|