Skip to content

Commit

Permalink
docs(action): improve configuration overview
Browse files Browse the repository at this point in the history
- add more information into the configuration overview table

Signed-off-by: AtomicFS <vojtech.vesely@9elements.com>
  • Loading branch information
AtomicFS committed Dec 5, 2024
1 parent b4deb3a commit e96e62b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions action/recipes/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@ type CommonOpts struct {

// Overview:
//
// | Configuration option | Direction |
// |:-----------------------|:--------------------:|
// | RepoPath | Host --> Container |
// | | |
// | ContainerOutputDirs | Host <-- Container |
// | ContainerOutputFiles | Host <-- Container |
// | OutputDir | Host <-- Container |
// | | |
// | InputDirs | Host --> Container |
// | InputFiles | Host --> Container |
// | ContainerInputDir | Host --> Container |
// | Configuration option | Host side | Direction | Container side |
// |:-----------------------|:-----------------------|:--------------------:|:-------------------------------|
// | RepoPath | $RepoPath | Host --> Container | $(pwd) |
// | | | | |
// | OutputDir | $(pwd)/$OutputDir | Host <-- Container | N/A |
// | ContainerOutputDirs | $(pwd)/$OutputDir/... | Host <-- Container | $ContainerOutputDirs |
// | ContainerOutputFiles | $(pwd)/$OutputDir/... | Host <-- Container | $ContainerOutputFiles |
// | | | | |
// | ContainerInputDir | N/A | Host --> Container | $(pwd)/$ContainerInputDir |
// | InputDirs | $InputDirs | Host --> Container | $(pwd)/$ContainerInputDir/... |
// | InputFiles | $InputFiles | Host --> Container | $(pwd)/$ContainerInputDir/... |
}

// ANCHOR_END: CommonOpts
Expand Down

0 comments on commit e96e62b

Please sign in to comment.