Skip to content

Instantly share code, notes, and snippets.

@takahirohonda
Created July 29, 2020 12:59
Show Gist options
  • Select an option

  • Save takahirohonda/26eef95d122f0da279e413f30243a169 to your computer and use it in GitHub Desktop.

Select an option

Save takahirohonda/26eef95d122f0da279e413f30243a169 to your computer and use it in GitHub Desktop.
wiremock-dockerrun.aws.json
{
"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