You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This introduces configuration parsing for volumes in floki.
Currently the configuration isn't interpreted, so no volumes are actually added to the running floki container.
However this provides the intended configuration semantics.
Volumes can be configured in `floki.yaml` under the `volumes` key:
```
volumes:
cargo-registry:
shared: true
mount: /home/rust/.cargo/registry
something-else:
mount: /something
```
Intended interpretation
-----------------------
The `shared` key indicates that this volume should be shared across all containers using
the same key (with `shared` also set). Setting `shared` may be elided, in which case it
defaults to false, and the volume will only be used by containers using the same `floki.yaml`
configuration files.
Signed-off-by: Richard Lupton <[email protected]>
0 commit comments