소스 검색

removing grep command that depends on perl, better for boot2docker

Docker-DCO-1.1-Signed-off-by: Adam Singer <financeCoding@gmail.com> (github: financeCoding)
Adam Singer 11 년 전
부모
커밋
7f9178c6d1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docs/sources/examples/couchdb_data_volumes.md

+ 2 - 2
docs/sources/examples/couchdb_data_volumes.md

@@ -28,7 +28,7 @@ We're assuming your Docker host is reachable at `localhost`. If not,
 replace `localhost` with the public IP of your Docker host.
 replace `localhost` with the public IP of your Docker host.
 
 
     $ HOST=localhost
     $ HOST=localhost
-    $ URL="http://$HOST:$(sudo docker port $COUCH1 5984 | grep -Po '\d+$')/_utils/"
+    $ URL="http://$HOST:$(sudo docker port $COUCH1 5984 | grep -o '[1-9][0-9]*$')/_utils/"
     $ echo "Navigate to $URL in your browser, and use the couch interface to add data"
     $ echo "Navigate to $URL in your browser, and use the couch interface to add data"
 
 
 ## Create second database
 ## Create second database
@@ -40,7 +40,7 @@ This time, we're requesting shared access to `$COUCH1`'s volumes.
 ## Browse data on the second database
 ## Browse data on the second database
 
 
     $ HOST=localhost
     $ HOST=localhost
-    $ URL="http://$HOST:$(sudo docker port $COUCH2 5984 | grep -Po '\d+$')/_utils/"
+    $ URL="http://$HOST:$(sudo docker port $COUCH2 5984 | grep -o '[1-9][0-9]*$')/_utils/"
     $ echo "Navigate to $URL in your browser. You should see the same data as in the first database"'!'
     $ echo "Navigate to $URL in your browser. You should see the same data as in the first database"'!'
 
 
 Congratulations, you are now running two Couchdb containers, completely
 Congratulations, you are now running two Couchdb containers, completely