Category "docker"

Error response from daemon: stat /var/lib/docker/btrfs/subvolumes/[...]: no such file or directory

I manually deleted a docker managed subvolumes btrfs subvolume delete /var/lib/docker/btrfs/subvolumes/<subvolume id> but when I try to recreate it gives

Error response from daemon: network myapp not found

I am trying to create a container in a multihost network but while creating I am getting this error: Error response from daemon: network myapp not found Here

Docker cannot resolve DNS on private network

My machine is on a private network with private DNS servers, and a private zone for DNS resolution. I can resolve hosts on this zone from my host machine, but I

Exploring Docker container's file system

I've noticed with docker that I need to understand what's happening inside a container or what files exist in there. One example is downloading images from the

How to capture packets for single docker container

There have many container running on the host. And I want to capture packets for the one container of these. Is there any way to do this?

Cache "go get" in docker build

I want to encapsulate my golang unit testing in a docker-compose script because it depends on several external services. My application has quite a lot of depen

Docker initialize database tables and records in SQL Server

How do you specify initialization database script for SQL Server via docker-compose using SQL script file? docker-compose.yml database: image: microsoft/m

Update only one Container via docker-compose

Let's say I have a docker-compose.yml file containg five apps & I started them via docker-compose up -d Now there is an update for one of these apps availab

How to create a queue in RabbitMQ upon startup

I am trying to start RMQ inside docker container, with precreated queue qwer. Prior to this, I was using simple docker-compose.yml file: rabbit: image: ra

Network mode container in docker-compose

With plain docker I can use network mode container like this: docker run -d --name container-b --network container:container-a <image> Can this be achi

Building a rocketmq cluster with docker-compose, managing which broker is in control

I want build a rocketmq cluster on my machine, where the mode is master-slave, with docker-compose And I can only start one broker at the same time. That say wh

how to run a job in each node of kubernetes instead of daemonset

There is a kubernetes cluster with 100 nodes, I have to clean the specific images manually, I know the kubelet garbage collect may help, but it isn't applied in

Jenkins not building docker image, can't find the docker command

I'm trying to make Jenkins build and publish a docker image of my project after every successful build of my Maven Java project. I have a Dockerfile and a Jenk

Xdebug can't connect back to Docker host

I've just setup Docker on my machine & have an Nginx/PHP7 (FPM)/MySQL setup all working fine, but having installed Xdebug on the PHP container I can't get i

NoSuchFileException while running docker image,

I'm new to docker and AWS. I am trying to connect with AWS keyspaces using truststore certificate(cassandra_truststore.jks), I kept the certificate in project r

Problem with passing parameters in a shell function

I have the following shell script. There is a deploy function, that is used later in the script to deploy containers. function deploy { if [[ $4 -eq QA ]]

Docker for Windows stuck at "Kubernetes is Starting" after updating to version 2.1.1.0 Edge (or Stable)

I recently updated my Docker for Desktop to latest Edge channel version: 2.1.1.0 on a Windows 10 machine. Unfortunately, after updating, Kubernetes was no longe

nestjs Docker build error: can not find tsconfig.build.json

here is my Dockerfile: FROM node AS builder WORKDIR /app COPY package*.json ./ COPY prisma ./prisma/ COPY tsconfig.build.json ./ COPY tsconfig.json ./ RUN n

WebUI.maximizeWindow() not working for Katalon Docker image?

WebUI.maximizeWindow() does not work for katalon docker image, The command works fine on Katalon desktop, but when I run this on docker image it seems to igno

How to access gradle test reports from a docker container

I'm using a docker container to build and run my java application and I want to see the test results that would usually be available from build/reports/tests/te