Return connection refused and panic error occurs on Couchbase server

@deepkaran.salooja Thanks for reply!

I think it probably is not configuration issue.

  • It ran normally from several minutes to several hours after launching this container.
  • In this forum I got advice from Couchbase staff and made dockerfile and config file

I think that persist data may has been broken.

docker-compose.yml:

version: '2'
services:
    couchbase:
        container_name: 'couch'
        command: "/opt/couchbase/init.sh"
        build:
            context: ./couchbase
            dockerfile: Dockerfile
        volumes:
          - ./couchbase/export/var/node1:/opt/couchbase/var
        ports:
          - 8091:8091
          - 8092:8092
          - 8093:8093
          - 8094:8094
          - 11207:11207
          - 11210:11210
          - 11211:11211
          - 18091:18091
          - 18092:18092
          - 18093:18093
        networks:
            - datastore
networks:
    datastore: