feat(volume): add the possibilty to mount local directory into the container (like docker volume)

This commit is contained in:
2025-03-11 15:58:13 -06:00
parent 092f497ecc
commit b72f1eef9a
3 changed files with 62 additions and 4 deletions

View File

@@ -46,6 +46,10 @@ mc session create --driver goose
# Create a session with environment variables
mc session create -e VAR1=value1 -e VAR2=value2
# Mount custom volumes (similar to Docker's -v flag)
mc session create -v /local/path:/container/path
mc session create -v ~/data:/data -v ./configs:/etc/app/config
# Shorthand for creating a session with a project repository
mc github.com/username/repo
```