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:10:44 UTC

[GitHub] [couchdb] pavellzubkov opened a new issue #2603: Can't start v.3.0.0 in docker

pavellzubkov opened a new issue #2603: Can't start v.3.0.0 in docker
URL: https://github.com/apache/couchdb/issues/2603
 
 
   [NOTE]: # ( ^^ Provide a general summary of the issue in the title above. ^^ )
   
   ## Description
   I get 
   
   > ERROR: CouchDB 3.0+ will no longer run in "Admin Party
   
   i've try apache/couchdb:3.0  apache/couchdb:3.0.0 apache/couchdb:3 images
   
   
   
   
   ## Steps to Reproduce
   
   my docker-compose section
   ```
   version: '3'
   
   services:
     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"
   ``` 
   in ./etc/local.ini
   
   ```
   [admins]
   ;admin = mysecretpassword
   admin = -hashed-6d3c30241ba0aaa4e16c6ea99224f915687ed8cd,7f4a3e05e0cbc6f48a0035e3508eef90
   
   ```
   
   [NOTE]: # ( Include commands to reproduce, if possible. curl is preferred. )
   
   ## Expected Behaviour
   normal start
   
   [NOTE]: # ( Tell us what you expected to happen. )
   
   ## Your Environment
   
   [TIP]:  # ( Include as many relevant details about your environment as possible. )
   [TIP]:  # ( You can paste the output of curl http://YOUR-COUCHDB:5984/ here. )
   
   * CouchDB version used: 3.0.0
   * Browser name and version: 
   * Operating system and version: win10 with docker desktop
   * Arch: AMD (Ryzen 7 3700u)
   
   ## Additional Context
   
   [TIP]:  # ( Add any other context about the problem here. )
   

----------------------------------------------------------------
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

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

Posted by GitBox <gi...@apache.org>.
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

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

Posted by GitBox <gi...@apache.org>.
pavellzubkov closed issue #2603: Can't start v.3.0.0 in docker
URL: https://github.com/apache/couchdb/issues/2603
 
 
   

----------------------------------------------------------------
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