This commit is contained in:
2024-01-10 03:39:09 +01:00
parent 905c64f395
commit 5c964c6e19
6 changed files with 249 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ DevOps Portable toolkit
- kustomize
- jq
- k6
- s3fs
```yaml
version: '3.7'
@@ -25,4 +26,23 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
- ~/.kube:/root/.kube
- ~/.ssh:/root/.ssh # If you use private CVS
```
## Mount S3
> Command : s3-mount
```yaml
version: '3.7'
services:
toolkit:
image: jkaninda/toolkit:latest
container_name: toolkit
command: ["/bin/bash", "sh"]
volumes:
- ./custome-volume:/custome-volume
environment:
- ACCESS_KEY=${ACCESS_KEY}
- SECRET_KEY=${SECRET_KEY}
- BUCKETNAME=${BUCKETNAME}
- S3_ENDPOINT=https://s3.us-west-2.amazonaws.com
```