skip to Main Content

How to connect to a MongoDb of a docker container

I've created the following docker-compose.yml: version: "3" services: mongo: image: mongo:latest environment: MONGO_INITDB_ROOT_USERNAME: admin MONGO_INITDB_ROOT_PASSWORD: admin ports: - '27017:27017' I then start my containers: docker-compose up then I try to connect into MongoDb Compass(also tried through c# code), with the…

VIEW QUESTION

spire.pdf in a docker container

I create an application that handle pdf and convert them to pdfa3 and also convert the document onto facturX. I developped my application using Springboot and it works fine. Now i'm trying to dockerize my application. I had issue with…

VIEW QUESTION

Completed handshake but follow up connection failed ElasticSearch – Docker

I am trying to deploy a 4 node cluster of ElasticSearch using the following docker compose in portainer 2.9.0 and docker 20.10.11: version: "3.8" x-master-opts: &master ES_JAVA_OPTS: "-Xmx2g -Xms2g" discovery.seed_resolver.timeout: 60s discovery.seed_hosts: master1,master2 cluster.initial_master_nodes: master1,master2 network.host: 0.0.0.0 xpack.security.enabled: "false" x-data-opts:…

VIEW QUESTION
Back To Top
Search