Skip to content

Commit

Permalink
fix: Missing &&'s in Docker quickstarts doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
030 committed Feb 19, 2023
1 parent d402bf1 commit 54579c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quickstarts/DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ docker run \
-p 8081:8081 \
-p 8082:8082 \
--name ${nexus_docker_name} \
sonatype/nexus3:3.47.1
sonatype/nexus3:3.47.1 && \
until docker logs ${nexus_docker_name} | grep -q 'Started Sonatype Nexus OSS'; do
sleep 10
done
Expand Down Expand Up @@ -81,7 +81,7 @@ docker run \
-p 9000:8081 \
-p 9001:8082 \
--name ${nexus_docker_name} \
sonatype/nexus3:3.47.1
sonatype/nexus3:3.47.1 && \
until docker logs ${nexus_docker_name} | grep -q 'Started Sonatype Nexus OSS'; do
sleep 10
done
Expand Down

0 comments on commit 54579c0

Please sign in to comment.