Skip to content

Instantly share code, notes, and snippets.

@toricls
Created June 14, 2021 08:38
Show Gist options
  • Select an option

  • Save toricls/76d6af05a7545ed27dd51b80f2408e90 to your computer and use it in GitHub Desktop.

Select an option

Save toricls/76d6af05a7545ed27dd51b80f2408e90 to your computer and use it in GitHub Desktop.
{
"volumes": [
{ "name": "var-lib-amazon" },
{ "name": "var-log-amazon" }
],
"containerDefinitions": [
{
"name": "task-def-level-workaround",
"readonlyRootFilesystem": true,
"image": "alpine:3.13",
"command": [ "sleep", "1000000" ],
"mountPoints": [
{
"readOnly": false,
"containerPath": "/var/lib/amazon",
"sourceVolume": "var-lib-amazon"
},
{
"readOnly": false,
"containerPath": "/var/log/amazon",
"sourceVolume": "var-log-amazon"
}
]
}
],
~~ snip ~~
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment