Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/octopus-rest-api/octopus.server.exe-command-line/path.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,16 @@ Or one of the common options:
--help Show detailed help for this command
```

## Basic examples
This example configures all paths (artifacts, task logs, packages, and telemetry) to a network share:
```text
octopus.server path --clusterShared \\OctoShared\OctopusData
```

This example configures the paths for the different components individually:
```text
octopus.server path --artifacts \\Octoshared\OctopusData\Artifacts
octopus.server path --taskLogs \\Octoshared\OctopusData\TaskLogs
octopus.server path --nugetRepository \\Octoshared\OctopusData\Packages
octopus.server --telemetry \\Octoshared\OctopusData\Telemetry
```