├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── onbuild ├── Dockerfile ├── trigger └── urlrewrite │ └── WEB-INF │ ├── lib │ └── urlrewritefilter.jar │ ├── urlrewrite.xml │ └── web-fragment.xml └── urlrewrite └── WEB-INF ├── lib └── urlrewritefilter.jar ├── urlrewrite.xml └── web-fragment.xml /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | README.md 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/README.md -------------------------------------------------------------------------------- /onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/onbuild/Dockerfile -------------------------------------------------------------------------------- /onbuild/trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/onbuild/trigger -------------------------------------------------------------------------------- /onbuild/urlrewrite/WEB-INF/lib/urlrewritefilter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/onbuild/urlrewrite/WEB-INF/lib/urlrewritefilter.jar -------------------------------------------------------------------------------- /onbuild/urlrewrite/WEB-INF/urlrewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/onbuild/urlrewrite/WEB-INF/urlrewrite.xml -------------------------------------------------------------------------------- /onbuild/urlrewrite/WEB-INF/web-fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/onbuild/urlrewrite/WEB-INF/web-fragment.xml -------------------------------------------------------------------------------- /urlrewrite/WEB-INF/lib/urlrewritefilter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/urlrewrite/WEB-INF/lib/urlrewritefilter.jar -------------------------------------------------------------------------------- /urlrewrite/WEB-INF/urlrewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/urlrewrite/WEB-INF/urlrewrite.xml -------------------------------------------------------------------------------- /urlrewrite/WEB-INF/web-fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgruter/dockerfile-artifactory/HEAD/urlrewrite/WEB-INF/web-fragment.xml --------------------------------------------------------------------------------