├── 1 └── Dockerfile ├── 2 └── Dockerfile ├── .gitignore ├── .travis.yml ├── 1.55 └── Dockerfile ├── 2.1.11 └── Dockerfile ├── 2.7.1 └── Dockerfile ├── README.md ├── files └── hello.txt └── mappings └── hello.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/.travis.yml -------------------------------------------------------------------------------- /1.55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/1.55/Dockerfile -------------------------------------------------------------------------------- /1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/1/Dockerfile -------------------------------------------------------------------------------- /2.1.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/2.1.11/Dockerfile -------------------------------------------------------------------------------- /2.7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/2.7.1/Dockerfile -------------------------------------------------------------------------------- /2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/2/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/README.md -------------------------------------------------------------------------------- /files/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /mappings/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekino/docker-wiremock/HEAD/mappings/hello.json --------------------------------------------------------------------------------