You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	add couchdb
This commit is contained in:
		| @@ -330,6 +330,7 @@ A collection of delicious docker recipes. | ||||
|   - [x] cp-kafka-rest | ||||
|   - [x] ksqldb-cli | ||||
|   - [x] ksqldb-server | ||||
| - [x] couchdb | ||||
| - [x] schollz/croc | ||||
| - [x] streamsets/datacollector | ||||
| - [x] daskdev | ||||
|   | ||||
							
								
								
									
										7
									
								
								couchdb/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								couchdb/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| couchdb | ||||
| ======= | ||||
|  | ||||
| [CouchDB][1] is a seamless multi-master syncing database with an intuitive | ||||
| HTTP/JSON API, designed for reliability. | ||||
|  | ||||
| [1]: https://github.com/apache/couchdb | ||||
							
								
								
									
										12
									
								
								couchdb/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								couchdb/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| version: "3.8" | ||||
| services: | ||||
|   couchdb: | ||||
|     image: couchdb | ||||
|     ports: | ||||
|       - "5984:5984" | ||||
|     volumes: | ||||
|       - ./data:/opt/couchdb/data | ||||
|     environment: | ||||
|       - COUCHDB_USER=admin | ||||
|       - COUCHDB_PASSWORD=password | ||||
|     restart: unless-stopped | ||||
		Reference in New Issue
	
	Block a user