-
-
Save toricls/76d6af05a7545ed27dd51b80f2408e90 to your computer and use it in GitHub Desktop.
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
| { | |
| "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