skip to Main Content

Docker : Overlay2 size too big

I'm running docker's environment with two containers.I noted the overlay2 folder size is too big. When the docker is down (docker-compose down) the overlay2 folder is 2.3GB size. When the containers are running, the overlay2 folder increase to 4.0GB and…

VIEW QUESTION

Dockerfile can not see package.json file

I've got this structure of the project: - project -- apps --- microservice-one ---- Dockerfile -- package.json -- docker-compose.yml Here is my Dockerfile from the microservice-one: FROM node:12.13-alpine As development WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY .…

VIEW QUESTION

Load fixture using Symfony and Docker

I'm creating web application using Symfony, also I use docker in my project. I want to load fixture php bin/console doctrine:fixture:load, but I get this error An exception occurred in the driver: SQLSTATE[08006] [7] could not translate host name "my_els_db_postgres"…

VIEW QUESTION
Back To Top
Search