This is an automated email from the ASF dual-hosted git repository.
kocolosk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/master by this push:
new c3bc956 Remove outdated docker targets and docs (#1109)
c3bc956 is described below
commit c3bc95697bc841e6bd898930d3df7ddb1452f75b
Author: Adam Kocoloski <[email protected]>
AuthorDate: Wed Jan 24 13:44:36 2018 -0600
Remove outdated docker targets and docs (#1109)
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 e95d044..c8c0b09 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].