Skip to content

Commit

Permalink
update readme and maintainer information to reference eclipse project
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Jun 9, 2020
1 parent 00556b2 commit 028a1a5
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 8 deletions.
50 changes: 50 additions & 0 deletions .gitignore
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
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# About this Repo

[![Build Status](https://travis-ci.org/appropriate/docker-jetty.svg?branch=master)](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.
8 changes: 5 additions & 3 deletions generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 028a1a5

Please sign in to comment.