Skip to content

Commit

Permalink
fix: couchdb id, password
Browse files Browse the repository at this point in the history
  • Loading branch information
SSen committed Jul 15, 2020
1 parent ce26966 commit 6c5438d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echo "Environments"
echo "- curl : $(which curl)"

echo "Starting CouchDB"
docker run --name my-couchdb-app -p 5984:5984 -v "/github/workspace/local.d":"/opt/couchdb/etc/local.d" -d couchdb:$COUCHDB_VERSION
docker run --name my-couchdb-app -p 5984:5984 -e COUCHDB_USER=admin -e COUCHDB_PASSWORD=password -v "/github/workspace/local.d":"/opt/couchdb/etc/local.d" -d couchdb:$COUCHDB_VERSION
docker ps
docker exec my-couchdb-app ls /opt/couchdb/etc/local.d

Expand Down

0 comments on commit 6c5438d

Please sign in to comment.