davidgeary commented on issue #253:
URL: https://github.com/apache/couchdb-docker/issues/253#issuecomment-1966148475
IIRC, the username and password are only required for the initial
connection/setup, so you could just use:
``` yaml
version: "3.8"
services:
couchdb_dev:
image: couchdb
hostname: couchdb_dev
ports:
- "5984:5984"
environment:
COUCHDB_USER: admin
COUCHDB_PASSWORD: password
```
Then log in to the server with `admin`/`password` and immediately change the
admin user's password to something more secure. The new credentials will then
be encrypted and stored in the server's config file, overriding the values in
the _docker-compose_ file.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]