-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
55 additions
and
4 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
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
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,3 +1,8 @@ | ||
- inserire nel readme i prerequisiti: docker, docker-compose, php e composer. Php e composer solo se si vuole installare via composer | ||
- inserire le versioni minime di docker e docker-compose (compose mi pare almeno 1.6 ma verificare meglio) | ||
- inserire un mini troubleshooting per problemi, es se porta duplicata | ||
- inserire un mini troubleshooting per problemi, es se porta duplicata | ||
|
||
Comandi couchdb di esempio: | ||
|
||
curl -X GET http://127.0.0.1:5984/_all_dbs | ||
curl -X PUT http://couch:[email protected]:5984/baseball |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM klaemo/couchdb:latest | ||
|
||
ARG CONF_COUCHDB_USER=couchdb | ||
ARG CONF_COUCHDB_PASSWORD=secret | ||
|
||
ENV COUCHDB_USER=$CONF_COUCHDB_USER | ||
ENV COUCHDB_PASSWORD=$CONF_COUCHDB_PASSWORD | ||
|
||
EXPOSE 5984 | ||
|
||
WORKDIR /opt/couchdb/data | ||
|
||
|