I have created a jupyter_lab docker and usually it works quite fine but sometimes it get stuck. Usually i could never reproduce this problem but now, apparently
I have the following DockerFile FROM apache/superset:pr-19860 RUN pip install elasticsearch-dbapi RUN superset superset fab create-admin \ --user
I have a discord bot running with docker and docker-compose, how can I update the image of the container without any downtime? Its very important for me, that t
I have a microservices structure with a few services based on python/Django The structure is as below: user <===> kong <===> alpha <===> kong
I have a created a Jar file using spring boot project and the container name is clever_bohr and i want to commit the container using the --change='CMD ["java","
I'm trying to run docker in WSL2. I installed Ubuntu and it starts fine, I configured my git access with ssh key stored in .ssh and tested the access with ssh m
I have some private docker registries and I added their certificates in /etc/docker/certs.d/[domain.name.com]/ca.crt and it's working but my problem is that I h
I am using following docker-compose file version: '3.7' services: db_container: image: mongo:latest restart: always environment: MONGO_INITDB_ROOT_
OS: Windows Docker Desktop version: Server: Docker Desktop 4.7.1 (77678) Expected behavior: Once i run the following command to successfully download, extract a
Probably a very basic question but I can't seem to get my head around this. So, I have a docker file, which I have built and it builds successfully and I can al
I have a script, that is running inside the docker container some actions we need for some internal debugging purposes: set -eu echo "Starting i/o test for hos
I have been using alpine as the base image for the docker containers which are getting deployed in openshift platform. The reason being it was light weight and
I have the following in my Dockerfile: ... USER $user # Set default python version to 3 RUN alias python=python3 RUN alias pip=pip3 WORKDIR /app # Install l
I am new to docker and I have recently been trying to setup my project on docker. I have successfully deployed the application on nginx and php and i have been
I'm trying to run a node app with xvfb-run, here is my Dockerfile FROM node:lts-alpine RUN apk --no-cache upgrade && apk add --no-cache chromium coreut
I find that I can use ctr snapshot mount to copy a file from a container to a host. But how can I copy a file from a host to the container using containerd? I u
I have created a pipeline to build a Docker image and push it to my container registry. I am using Docker task for doing this (buildAndPush command). Here is a
I'm building a web application. The frontend is in angular and the backend in .Net Core. Currently, I'm doing the following, to build my final docker image: Bui
I have tried to search other questions, but the solutions arent cutting it. I have a java spring boot application running inside docker, using the command below
I am trying to create a publisher and consumer apps in spring using RabbitMQ. Every thing works fine and when the publisher sends a message, the consumer receiv