Created
July 29, 2020 12:59
-
-
Save takahirohonda/26eef95d122f0da279e413f30243a169 to your computer and use it in GitHub Desktop.
wiremock-dockerrun.aws.json
This file contains hidden or 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
| { | |
| "AWSEBDockerrunVersion": 2, | |
| "volumes": [ | |
| { | |
| "name": "wiremock-data", | |
| "host": { | |
| "sourcePath": "/var/app/current/mock-data" | |
| } | |
| }, | |
| { | |
| "name": "wiremock-record", | |
| "host": { | |
| "sourcePath": "/var/app/current/recordings" | |
| } | |
| } | |
| ], | |
| "containerDefinitions": [ | |
| { | |
| "name": "integration-wiremock-container", | |
| "image": "rodolpheche/wiremock", | |
| "essential": true, | |
| "memory": 400, | |
| "portMappings": [ | |
| { | |
| "hostPort": 80, | |
| "containerPort": 8080 | |
| } | |
| ], | |
| "mountPoints": [ | |
| { | |
| "sourceVolume": "wiremock-data", | |
| "containerPath": "/home/wiremock" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "integration-wiremock-recorder", | |
| "image": "rodolpheche/wiremock", | |
| "memory": 400, | |
| "portMappings": [ | |
| { | |
| "hostPort": 9443, | |
| "containerPort": 8080 | |
| } | |
| ], | |
| "mountPoints": [ | |
| { | |
| "sourceVolume": "wiremock-record", | |
| "containerPath": "/home/wiremock" | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment