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/27 09:54:12 UTC

[GitHub] [couchdb] pavellzubkov opened a new issue #2604: Couchdb 3 with Clouseau on Docker?

pavellzubkov opened a new issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604
 
 
   [NOTE]: # ( ^^ Provide a general summary of the request in the title above. ^^ )
   
   ## Summary
   is there a way to run couchdb 3.0.0 with full text search on docker?
   some example docker-compose file or couchdb image with includes clouseau?
   yesterday i try to run apache/couchdb:3.0 image and it seems to be work
   
   [NOTE]: # ( Provide a brief overview of what the new feature is all about. )
   
   ## Desired Behaviour
   
   [NOTE]: # ( Tell us how the new feature should work. Be specific. )
   [TIP]:  # ( Do NOT give us access or passwords to your actual CouchDB! )
   
   ## Possible Solution
   
   [NOTE]: # ( Not required. Suggest how to implement the addition or change. )
   
   ## Additional context
   
   [TIP]:  # ( Why does this feature matter to you? What unique circumstances do you have? )
   

----------------------------------------------------------------
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 #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
pavellzubkov commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-592077661
 
 
   thank you! 
   ibmcom/couchdb3 image useful for playground with full text search. but this image can't open databases created by apache/couchdb:3.0 image.
   my docker compose file
   ```
   version: '3'
   
   services:
     db:
           #ibmcom/couchdb3 treehouses/couchdb:2.3.1 apache/couchdb:3.0
           image: ibmcom/couchdb3
           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'
   ```

----------------------------------------------------------------
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] wohali commented on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
wohali commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-598970053
 
 
   Looks resolved, closing.

----------------------------------------------------------------
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] wohali commented on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
wohali commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-592176176
 
 
   I think @willholley means that the Apache CouchDB container runs Couch as `5984:5984`.

----------------------------------------------------------------
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] willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-591923435
 
 
   There is a ticket in relation to this at https://github.com/apache/couchdb-docker/issues/8. I'm not particularly experienced with Docker Compose but the issue is that Clouseau and CouchDB need to share the same loopback network if running in different containers. This works on Kubernetes when both containers are in the same pod - I don't know if there's a way to do it in Docker Compose.
   
   Another option is to use a combined container which includes both components. IBM publish one [here](https://hub.docker.com/r/ibmcom/couchdb3).

----------------------------------------------------------------
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] willholley edited a comment on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
willholley edited a comment on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-592169555
 
 
   the ibm container runs CouchDB as uid 1001:1001 by default - the CouchDB community container runs Couch as uid  5984:5984, so you would need to set permissions on your mounted volumes appropriately. There shouldn't be any problem reading the database files when using appropriate permissions.

----------------------------------------------------------------
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] willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-592169555
 
 
   the ibm container runs CouchDB as uid 1001:1001 by default - the CouchDB community container runs Couch as uid  1001:1001, so you would need to set permissions on your mounted volumes appropriately. There shouldn't be any problem reading the database files when using appropriate permissions.

----------------------------------------------------------------
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] wohali closed issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
wohali closed issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604
 
 
   

----------------------------------------------------------------
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] willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?

Posted by GitBox <gi...@apache.org>.
willholley commented on issue #2604: Couchdb 3 with Clouseau on Docker?
URL: https://github.com/apache/couchdb/issues/2604#issuecomment-592400933
 
 
   ha yes - thanks for the catch @wohali 

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