Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [docker-image]

A Docker image is an inert, immutable, file that's essentially a snapshot of a Linux container. Images are created with the 'docker build' command or 'docker container' command. Images will produce a container when started with 'docker run'. Images are stored in a Docker registry such as registry.hub.docker.com

docker-image
0 votes
0 answers
25 views

Sonatype Nexus Docker Registry - Disc Consumption

I recently switched to using the Sonatype Nexus Repository for hosting my Docker images. Previously, I used the Docker registry image to store my Docker images. With approximately 30 Docker images, ...
Ganesh Thirumani's user avatar
0 votes
0 answers
43 views

What base image do I use for my .NET 8 app in Linux container

I have an ASP.NET Core 8 Web API that I need to run in a linux container, and I am not using Docker desktop. My problem is that I don't know what the right based to use in my Dockerfile. The first ...
Alexu's user avatar
  • 1,145
0 votes
1 answer
44 views

Docker client unable to connect to the Docker daemon while docker service is running

I am running a Dockerfile that (is supposed to) run a docker-compose.yml file for a different package, but currently returns an error. The command docker-compose -f /home/kasm-default-profile/Project-...
CodeCrafter's user avatar
0 votes
1 answer
29 views

Why can't I just quit after running a docker container in terminal/bash?

PS C:\Users\abhis\OneDrive\Desktop\projects\pay\backend> docker run -p 3000:3000 server [email protected] start nodemon index.js [nodemon] 3.1.3 [nodemon] to restart at any time, enter rs [nodemon] ...
Abhishek Raj's user avatar
1 vote
0 answers
25 views

Docker Compose Wordpress Image directory got merge instead of overwritten

My project directory looks like the following wp-content - mu-plugins - plugins - theme - newtheme docker-compose.yml and my docker-compose.yml # wordpress wordpress: depends_on: ...
Harts's user avatar
  • 4,063
0 votes
1 answer
137 views

Puppeteer: Failed to launch browser! chrome_crashpad_handler: --database is required

I was running a job in an Alpine image on Kubernetes, which is a c# program which uses the Puppeteer library, and I'm encountering the following error when trying to launch the browser: Failed to ...
Nishil Athikkal's user avatar
0 votes
0 answers
44 views

Installing Legacy Ruby in New Ubuntu Using a Dockerfile (Installing Ruby 2.5.3 on Ubuntu noble 24.0.4 )

I have a separate ruby project which i need to interact as an end point The problem is that installing with rbenv and rvm is failling. for rbenv its because its not supported, for rvm its the same ...
89Tain's user avatar
  • 1
0 votes
0 answers
69 views

ruby-on-rails docker image 632mb

I have done multistage dockerization of my rails app but the image size is over 600mb which is too high. Dockerfile # Dockerfile for local development. # Default Ruby version for this project. ARG ...
etranz's user avatar
  • 1,201
0 votes
1 answer
45 views

Unable to pip install google.cloud.sql.connector when building docker image

I am using Python developing a web app in my local machine. I am using the code from Connect using Cloud SQL Language Connectors to connect to my GCP Postgres database and working fine! However, when ...
Ken's user avatar
  • 3
0 votes
0 answers
27 views

I have received the below error below link error while i test the docker file on base machine with docker desktop support

Receiving link file issues: Testing on windows host but checking linux files path. How to sort out this? This is my dockerfile # https://hub.docker.com/_/microsoft-dotnet FROM --platform=windows/amd64 ...
nirmala nirmala's user avatar
0 votes
3 answers
263 views

GoogleJib is stuck at 80 percent while creating docker image

While trying to create a docker image for spring boot app using the mvn compile jib:dockerBuild getting below error enter image description here I am using GoogleJib to create a docker image for my ...
Anshu's user avatar
  • 1
0 votes
0 answers
48 views

How to create isolated Docker containers for each user session in a web-based code execution environment?

I am undertaking a project which is basically a clone of Repl.it. It has a feature where users can use a terminal to run their code. So, what I am doing is creating a backend server and containerizing ...
Diganta Biswas's user avatar
0 votes
1 answer
36 views

Execute command before killing/stopping a docker container on windows

I want to copy the files generated inside a docker container, to the local storage before stopping/killing the container. I am creating an docker image. I am using docker run --name <...
Andrei Cezar's user avatar
0 votes
0 answers
47 views

Docker MySQL: How to load data from csv file to MySQL table, on container startup

I am trying to load data from a .csv file to a MySql database running inside a docker container. I am using the official mysql image from dockerhub. The csv file and the sql files (containing LOAD ...
hammi's user avatar
  • 878
0 votes
1 answer
127 views

Azure Container Instance doesn't show live logs in Python application

I have a Python script that uses an Azure Service Bus underneath. It is a simulation, so it communicates through the Service Bus using the Pub Sub and Topics and prints information about some events. ...
Filip_Moniuszko's user avatar

15 30 50 per page
1
2 3 4 5
72