You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2022/09/01 16:05:49 UTC

[couchdb] 20/31: update variable name and readme

This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a commit to branch raft_storemodule
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit a3c09e12a3859a1e1e61ccd2f23396afc2242360
Author: Zach Lankton <za...@gmail.com>
AuthorDate: Wed Aug 17 15:33:13 2022 +0000

    update variable name and readme
---
 .devcontainer/Dockerfile        | 4 ++--
 .devcontainer/devcontainer.json | 2 +-
 README-DEV.rst                  | 3 ++-
 README.rst                      | 3 ++-
 4 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 46a09d0cf..2670d8795 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,5 +1,5 @@
-ARG IMG
-FROM ${IMG}
+ARG COUCHDB_IMAGE
+FROM ${COUCHDB_IMAGE}
 
 # Install SpiderMonkey 78 and tell CouchDB to use it in configure
 ENV SM_VSN=78
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 5dbf45dbd..0c581315a 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -9,7 +9,7 @@
             // apache/couchdbci-debian:bullseye-erlang-24.3.4.2
             // apache/couchdbci-debian:bullseye-erlang-23.3.4.15
             //
-            "IMG": "apache/couchdbci-debian:bullseye-erlang-25.0.2"
+            "COUCHDB_IMAGE": "apache/couchdbci-debian:bullseye-erlang-25.0.2"
         }
     },
 
diff --git a/README-DEV.rst b/README-DEV.rst
index 84e16def7..e29d632f5 100644
--- a/README-DEV.rst
+++ b/README-DEV.rst
@@ -76,7 +76,8 @@ and spin up a dev container for use.
 
 This ``devcontainer`` will automatically run ``./configure && make`` the first time it is created.  
 While this may take some extra time to spin up, this tradeoff means you will be able to 
-run things like ``./dev/run`` and ``make check`` straight away.  Subsequent startups should be quick.
+run things like ``./dev/run``, ``./dev/run --admin=admin:admin``,  ``./dev/run --with-admin-party-please``, 
+and ``make check`` straight away.  Subsequent startups should be quick.
 
 
 Debian-based (inc. Ubuntu) Systems
diff --git a/README.rst b/README.rst
index 6bb69cd09..d06904fe8 100644
--- a/README.rst
+++ b/README.rst
@@ -74,7 +74,8 @@ and spin up a dev container for use.
 
 This ``devcontainer`` will automatically run ``./configure && make`` the first time it is created.  
 While this may take some extra time to spin up, this tradeoff means you will be able to 
-run things like ``./dev/run`` and ``make check`` straight away.  Subsequent startups should be quick.
+run things like ``./dev/run``, ``./dev/run --admin=admin:admin``,  ``./dev/run --with-admin-party-please``, 
+and ``make check`` straight away.  Subsequent startups should be quick.
 
 **Manual Dev Setup:**