-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parameterize DB name and upgrade couchdb
- Loading branch information
Mona Gogia
committed
Jun 21, 2024
1 parent
b153eb5
commit 6360bc4
Showing
4 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
COUCHDB_USER=<COUCHDB_USERNAME> | ||
COUCHDB_PASSWORD=<COUCHDB_PASSWORD> | ||
COUCHDB_SERVER_IP_ADDR=<COUCHDB_IP> | ||
COUCHDB_USER=Multimodal | ||
COUCHDB_PASSWORD=iqtpass1 | ||
COUCHDB_SERVER_IP_ADDR=10.204.183.37 | ||
DB_NAME=Multimodal | ||
|
||
# Set this value when running it for CouchDB sync server on a peripheral | ||
DEVICE_IP=<DEVICE_IP> | ||
|
||
# Set this value to true if running the docker install for a mobile device. | ||
# Set it to false when running it for a CouchDB sync server | ||
|
||
PERIPHERAL=true | ||
PERIPHERAL=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM couchdb:3.1.1 | ||
FROM couchdb:3.3.3 | ||
ADD couchdbinit.sh . | ||
CMD ["chmod", "+x", "/couchdbinit.sh"] | ||
ENTRYPOINT ["sh", "-c", "/couchdbinit.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters