Questions tagged [sbt-docker-compose]

8 questions
2
votes
1 answer

How to run "--verbose" for wiremock in docker compose file

I want to get verbose output from mockwire when running in docker using docker compose file. I tried these three ways but none of them work. first way services: wiremock: image: wiremock ports: - 8080:8080 restart: always …
0
votes
0 answers

Visual Studio can build the docker image, but command line can't

I am new in docker container. I have the latest docker desktop on my Windows PC. I have two asp.net core projects in a Visual Studio solution. Their dockerfiles are the same: FROM…
user788454
0
votes
0 answers

How to tell Python where to fine the CA cert file for a Docker container

I have two docker containers (app_1 and app_2) setup so that app_1 makes a rest call to app_2 (using FastAPI). The connection needs to be via TLS. I have created two self-signed certs, one for each app, and signed them both with a self created CA. I…
Jim Archer
  • 1,337
  • 5
  • 30
  • 43
0
votes
1 answer

How to use pg_restore with docker on windows?

I am using docker-compose on my windows computer. I start up two containers, one web and one db. I would like to use pg_restore to import a dump file I created. docker-compose.yaml version: '3.8' services: web: build: . command: python…
Doug Smith
  • 500
  • 7
  • 21
0
votes
1 answer

Docker-Compose | why the containers can't reach each other?

I have been trying to create a docker-compose file to get my web application up and running using only 'docker-compose up'. I can't make the containers reach each other, currently, I'm trying that the backend container connects to the postgres…
0
votes
1 answer

docker-compose is not starting cli throws eror : not foundrypoints.sh: ./.env: line 2:

I have an amazee.io setup done and the containers were building fine but now I see a strange error while doing cli of the container up the container doesn't starts and exits by itself and throws the error as below - : not foundrypoints.sh: ./.env:…
linux_fanatic
  • 4,767
  • 3
  • 19
  • 20
0
votes
1 answer

how to add option in one docker container inside docker-compose

i have several containers in my docker-compose.yml before docker-compose one of my container run as docker run -p 8080:8080 -i imagename:tag i have added this container in my docker-compose like this myservice: image: imagename:tag ports: …
swaheed
  • 3,671
  • 10
  • 42
  • 103
-2
votes
1 answer

Issue in Docker Compose file

I am new docker. I am facing issue in Docker compose. please help me for that. below is the my docker-compose.yaml file version: "2" services: database: image: mysql:5.7 volumes: - ./data:/var/lib/mysql environment: …