Docker-compose can't find service csproj file
I am very new to docker and did a good bit of searching through other questions asked here as well as reddit. The issue I am having is that docker can't find my .csproj files of the services I am…
I am very new to docker and did a good bit of searching through other questions asked here as well as reddit. The issue I am having is that docker can't find my .csproj files of the services I am…
here is the docker-compose.yml I would like to achieve: version: "3.4" services: service1: image: dorowu/ubuntu-desktop-lxde-vnc service2: build: context: . environment: - DISPLAY=[use env variable DISPLAY of service1] Is there a way in docker compose to tell service2 that the value…
I have Minio in docker container called "be_minio". I want connect to that container with my app from another container called "be_api". be_api: build: . restart: always ports: - 8080:80 depends_on: - be_minio be_minio: image: minio/minio restart: always ports: -…
I would like to have Traefik & traefik/whoami containers up and running. Then access the whoami server via Traefik container. I am using MacBook with M2 chip, that's armv8 architecture. So, the image I use for "whoami" server is traefik/whoami…
I am trying to user a docker-compose to spin up a broker, zookeeper and 2 of my own apps. They all build and run like normal but then when I try to create a kafka producer or consumer from within…
So I've been wanting to integrate code coverage in my tests and for that im using the coverage api. I have a exit handler which gets triggered on SIGINT, SIGTERM and SIGABRT signals: import logging import signal import config logger…
I am new to Docker and buidling a docker-compose file to setup my nodejs dev environment from a single file. Idea is to give a docker-compose file to a developer from where they can simply spin up the containers and…
I can't get to azure container instance linked a file from my docker to a file that I placed in an azure storage account the path after the volume name does not seem to be accepted : /conf/nginx.conf volumes: -…
I can somehow handle a docker engine but cannot handle a docker compose. I have two docker images which is pg13ondeb and pyonol8. The one is originaly from postgresql13 image and the other is from OracleLinux8 which has my python…
Spring Boot + MySQL + Docker here. I have the following docker-compose.yml: version: "3.8" services: myappws_mono_db: image: mysql:8.0.32 restart: unless-stopped environment: - MYSQL_ROOT_PASSWORD=$MAIN_DB_ROOT_PASSWORD - MYSQL_DATABASE=$MAIN_DB_DATABASE - MYSQL_CHARSET=utf8mb4 - MYSQL_COLLATION=utf8mb4_0900_ai_ci - MYSQL_ENGINE=InnoDB ports: - $MAIN_DB_PORT:$MAIN_DB_DOCKER_PORT volumes: - db:/var/lib/mysql myappws: depends_on: -…