This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch remove-outdated-docker-targets in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 52cf451215b1fa6ba0acb4aa8bdd095d65903569 Author: Adam Kocoloski <[email protected]> AuthorDate: Sat Jan 13 20:25:43 2018 -0500 Remove outdated docker targets and docs We removed the Dockerfile in 6e57c43a and moved all Docker-related materials to apache/couchdb-docker, but we never cleaned up the Makefile targets or developer documentation. --- Makefile | 18 ------------------ Makefile.win | 18 ------------------ README-DEV.rst | 24 ------------------------ 3 files changed, 60 deletions(-) diff --git a/Makefile b/Makefile index 248dddc..1155484 100644 --- a/Makefile +++ b/Makefile @@ -211,24 +211,6 @@ dialyze: .rebar @$(REBAR) -r dialyze $(DIALYZE_OPTS) -.PHONY: docker-image -# target: docker-image - Build Docker image -docker-image: - @docker build --rm -t couchdb/dev-cluster . - - -.PHONY: docker-start -# target: docker-start - Start CouchDB in Docker container -docker-start: - @docker run -d -P -t couchdb/dev-cluster > .docker-id - - -.PHONY: docker-stop -# target: docker-stop - Stop Docker container -docker-stop: - @docker stop `cat .docker-id` - - .PHONY: introspect # target: introspect - Check for commits difference between rebar.config and repository introspect: diff --git a/Makefile.win b/Makefile.win index 874ddf4..7ff0ab5 100644 --- a/Makefile.win +++ b/Makefile.win @@ -137,24 +137,6 @@ dialyze: .rebar @$(REBAR) -r dialyze $(DIALYZE_OPTS) -.PHONY: docker-image -# target: docker-image - Build Docker image -docker-image: - @docker build --rm -t couchdb\dev-cluster . - - -.PHONY: docker-start -# target: docker-start - Start CouchDB in Docker container -docker-start: - @docker run -d -P -t couchdb\dev-cluster > .docker-id - - -.PHONY: docker-stop -# target: docker-stop - Stop Docker container -docker-stop: - @docker stop `cat .docker-id` - - .PHONY: introspect # target: introspect - Check for commits difference between rebar.config and repository introspect: diff --git a/README-DEV.rst b/README-DEV.rst index 3587e85..9cfa1f2 100644 --- a/README-DEV.rst +++ b/README-DEV.rst @@ -198,30 +198,6 @@ See ``make help`` for more info and useful commands. Please report any problems to the developer's mailing list. -Testing a cluster ------------------ - -We use `Docker <https://docker.io>`_ to safely run a local three node -cluster all inside a single docker container. - -Assuming you have Docker installed and running:: - - make docker-image - -This will create a docker image (tagged 'couchdb/dev-cluster') capable -of running a joined three node cluster. - -To start it up:: - - make docker-start - -A three node cluster should now be running (you can now use ``docker ps`` -to find the exposed ports of the nodes). - -To stop it:: - - make docker-stop - Releasing --------- -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
