19 lines
389 B
YAML
19 lines
389 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
services:
|
|
couchdb:
|
|
image: docker.io/bitnami/couchdb:3
|
|
environment:
|
|
- COUCHDB_USER=admin
|
|
- COUCHDB_PASSWORD=couchdb
|
|
ports:
|
|
- '5984:5984'
|
|
- '4369:4369'
|
|
- '9100:9100'
|
|
volumes:
|
|
- couchdb_data:/bitnami/couchdb
|
|
volumes:
|
|
couchdb_data:
|
|
driver: local
|