Skip to content

Commit

Permalink
couchdb 2.1.2 (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogi authored and paulbert committed Jul 23, 2018
1 parent a59595f commit 16dd981
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Vagrant.configure(2) do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ole/stretch64"
config.vm.box_version = "0.4.0"
config.vm.box_version = "0.4.1"

config.vm.hostname = "planet"

Expand Down Expand Up @@ -88,10 +88,10 @@ Vagrant.configure(2) do |config|
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL
# Add CouchDB Docker
sudo docker run -d -p 5984:5984 --name planet -v /srv/data/bell:/opt/couchdb/data -v /srv/log/bell:/opt/couchdb/var/log/ treehouses/couchdb:2.1.1
sudo docker run -d -p 5984:5984 --name planet -v /srv/data/bell:/opt/couchdb/data -v /srv/log/bell:/opt/couchdb/var/log/ treehouses/couchdb:2.1.2
# Install Angular CLI
#sudo npm install -g @angular/cli
sudo npm install -g webdriver-manager
#sudo npm install -g webdriver-manager
# Add CORS to CouchDB so app has access to databases
#git clone https://github.com/pouchdb/add-cors-to-couchdb.git
Expand Down
4 changes: 2 additions & 2 deletions docker/generate_yml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SUFFIX="$PACKAGE_VERSION-$BRANCH-$COMMIT_HASH"
echo " couchdb:"
echo " expose:"
echo " - 5984"
echo " image: treehouses/couchdb:2.1.1"
echo " image: treehouses/couchdb:2.1.2"
echo " ports:"
echo " - \"2200:5984\""
echo " db-init:"
Expand All @@ -39,4 +39,4 @@ SUFFIX="$PACKAGE_VERSION-$BRANCH-$COMMIT_HASH"
echo " depends_on:"
echo " - couchdb"
echo "version: \"2\""
} > "planet-$SUFFIX.yml"
} > "planet-$SUFFIX.yml"
2 changes: 1 addition & 1 deletion docker/planet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
couchdb:
expose:
- 5984
image: treehouses/couchdb:2.1.1
image: treehouses/couchdb:2.1.2
ports:
- "2200:5984"
db-init:
Expand Down

0 comments on commit 16dd981

Please sign in to comment.