You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by GitBox <gi...@apache.org> on 2020/02/26 22:44:24 UTC

[GitHub] [couchdb] pavellzubkov commented on issue #2603: Can't start v.3.0.0 in docker

pavellzubkov commented on issue #2603: Can't start v.3.0.0 in docker
URL: https://github.com/apache/couchdb/issues/2603#issuecomment-591683057
 
 
   adding to compose 'environment ' section solved problem
   ```
    db:        
           image: apache/couchdb:3.0
           restart: always   
           volumes: 
               - ./etc:/opt/couchdb/etc/local.d  
               - ./data:/opt/couchdb/data
               - ./log:/opt/couchdb/var/log
           ports:
             - "5984:5984"
           environment:
             - 'COUCHDB_USER=admin'
             - 'COUCHDB_PASSWORD=password' 
   ```
   strange ... local.ini not checking for admins? though so v 2.3.1 have same behaviour
      
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services