Skip to content

Commit 1b238a7

Browse files
committed
chore(docs): use Docker Toolbox, not boot2docker
Issue #4266 notes how boot2docker is now deprecated. This commit changes documentation and Makefile notices to recommend using Docker Toolbox and Docker Machine instead.
1 parent 74dcc99 commit 1b238a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ postgres:
5656
docker start postgres || docker run --restart="always" -d -p 5432:5432 --name postgres postgres:9.4.1
5757
docker exec postgres createdb -U postgres deis 2>/dev/null || true
5858
@echo "To use postgres for local development:"
59-
@echo " export PGHOST=`boot2docker ip 2>/dev/null || echo 127.0.0.1`"
59+
@echo " export PGHOST=`docker-machine ip $$(docker-machine active) 2>/dev/null || echo 127.0.0.1`"
6060
@echo " export PGPORT=5432"
6161
@echo " export PGUSER=postgres"
6262

0 commit comments

Comments
 (0)