Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neilkuan/ecs-efs-demo
https://github.com/neilkuan/ecs-efs-demo
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/neilkuan/ecs-efs-demo
- Owner: neilkuan
- License: apache-2.0
- Created: 2021-02-04T11:51:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-31T00:38:52.000Z (over 3 years ago)
- Last Synced: 2024-10-06T10:11:18.919Z (about 1 month ago)
- Language: TypeScript
- Size: 162 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ECS Mount EFS Demo
### `cdk-efs-assets` 將會幫助我們在 efs `fs-xxxxxx:/demo-github`,Clone `https://github.com/guan840912/guan840912.git`
### 當前目錄 清單
```bash
fs-xxxxxx:/demo-github/guan840912/README.md
# ECS TASK
...
mountPoint: [
{
containerPath: "/config",
sourceVolume: "app-data"
}
...
]
...
"volumes": [
{
"name": "app-data",
"efsVolumeConfiguration": {
"fileSystemId": "fs-xxxxxxx",
"transitEncryption": "ENABLED"
}
}
],
...
```### 確認過後, 將會掛成
```bash
Container Path => /config/demo-github/guan840912/README.md
```