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
8 changes: 4 additions & 4 deletions application/probe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ Use containers for production deployments, isolated environments, and easy distr
```bash
# Docker
docker run --name probe \
-v ~/temp/probe/catalog:/app/catalog/:ro,Z \
-v ~/temp/probe/output:/app/output/,Z \
-v ~/temp/probe/catalog:/app/catalog/:rw,Z \
-v ~/temp/probe/output:/app/output/:rw,Z \
-p 8095:8080 \
-d eclipsedaanse/probe:snapshot
```

##### Container Parameters Explained

- `--name probe`: Container name
- `-v ~/temp/probe/catalog:/app/catalog/:ro,Z`: Mount local catalog directory (read-only with SELinux context)
- `-v ~/temp/probe/output:/app/output/,Z` mount the output folder e.g. for documnetation
- `-v ~/temp/probe/catalog:/app/catalog/:rw,Z`: Mount local catalog directory (read-only with SELinux context)
- `-v ~/temp/probe/output:/app/output/:rw,Z` mount the output folder e.g. for documnetation
- `-p 8095:8080`: Map host port 8095 to container port 8080
- `-d`: Run in detached mode
- `eclipsedaanse/probe:snapshot`: Container image
Expand Down
Loading