Created
June 20, 2016 14:58
-
-
Save tabrindle/12e9710c8d12c505492196b4b935ef68 to your computer and use it in GitHub Desktop.
couchbase docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# couchbase on docker | |
- install docker toolbox - `brew cask install dockertoolbox` | |
- create default vm - `docker-machine create --driver virtualbox default` | |
- get machines defaults - `docker-machine env default` | |
- save defaults to shell - `eval "$(docker-machine env default)"` | |
- install and run docker container - `docker run -d -p 8091:8091 --name cb couchbase:community` | |
- go to http://192.168.99.100:8091 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment