Skip to content

Commit

Permalink
Fix Docker command documentation (devopshq#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
astellingwerf authored Nov 10, 2022
1 parent 09fa2ce commit 17a0da4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ As simple as one command!
```bash
# docker
docker pull devopshq/artifactory-cleanup
docker run -rm devopshq/artifactory-cleanup artifactory-cleanup --help
docker run --rm devopshq/artifactory-cleanup artifactory-cleanup --help

# python (later we call it 'cli')
python3 -mpip install artifactory-cleanup
Expand Down Expand Up @@ -76,7 +76,7 @@ export ARTIFACTORY_USERNAME=usernamehere
export ARTIFACTORY_PASSWORD=password
# docker
docker run -rm -v "$(pwd)":/app -e ARTIFACTORY_USERNAME -e ARTIFACTORY_PASSWORD devopshq/artifactory-cleanup artifactory-cleanup
docker run --rm -v "$(pwd)":/app -e ARTIFACTORY_USERNAME -e ARTIFACTORY_PASSWORD devopshq/artifactory-cleanup artifactory-cleanup
# cli
artifactory-cleanup
Expand All @@ -86,7 +86,7 @@ artifactory-cleanup

```bash
# docker
docker run -rm -v "$(pwd)":/app -e ARTIFACTORY_USERNAME -e ARTIFACTORY_PASSWORD devopshq/artifactory-cleanup artifactory-cleanup --destroy
docker run --rm -v "$(pwd)":/app -e ARTIFACTORY_USERNAME -e ARTIFACTORY_PASSWORD devopshq/artifactory-cleanup artifactory-cleanup --destroy
# cli
artifactory-cleanup --destroy
Expand All @@ -101,7 +101,7 @@ Looking for more examples? Check [examples](./examples) folder!
```bash
# docker
docker pull devopshq/artifactory-cleanup:1.0.0
docker run -rm devopshq/artifactory-cleanup:1.0.0 artifactory-cleanup --version
docker run --rm devopshq/artifactory-cleanup:1.0.0 artifactory-cleanup --version
# python (later we call it 'cli')
python3 -mpip install artifactory-cleanup==1.0.0
Expand Down

0 comments on commit 17a0da4

Please sign in to comment.