Questions tagged [docker-desktop]

For questions about the Docker Desktop application. Use this tag in combination with the general [docker] tag. If your question applies to Docker more generally, use the [docker] tag only.

Docker Desktop Enterprise is a new commercial desktop offering that is the easiest, fastest and most secure way to deliver production-ready containerized applications. Developers can work with frameworks and languages of choice while IT can securely configure, deploy and manage developer environments that align to corporate standards and practices. Together, organizations can rapidly deliver containerized applications from development to production.

Docker desktop for Mac

Docker desktop for Windows

944 questions
-1
votes
1 answer

Using Docker Desktop with a Personal Account on a Company PC

I'm using a Docker Desktop on my company pc. I'm using it with my Personal Account (free) and for my own personal projects. Nothing to do with the company where I work for or any other commercial goal. Just my own playground. Recently, my company…
PapaZol
  • 13
  • 5
-1
votes
1 answer

How to set up Jellyfin Media System in Windows using Docker Desktop

I followed all the steps in the Jellyfin documentation, but can't get it working. The container is up and running but I can't access it through the browser. I tried removing and reconfiguring the container. Opening port 8096 on the firewall.…
-1
votes
3 answers

Unable to pull any docker image

running: docker run -d -p 80:80 docker/getting-started output: Unable to find image 'docker/getting-started:latest' locally docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": unable to connect to 34.205.13.154:443. Do you…
Ashwin
  • 9
  • 5
-1
votes
1 answer

How can I prevent Docker from launching at login?

I've seen this question asked and answered many times, but nothing has worked for me so far. I'm using a Macbook Pro running Monterey 12.6, and installed Docker Desktop 4.12.0. The application opens systematically at login, which I would like to…
-1
votes
1 answer

React app build is failing when building a docker image

I am trying to dockerize a react application, but npm run build layer is failing and giving this error: Dockerfile FROM node:16-alpine WORKDIR /app/app-v2 COPY .npmrc ./ COPY package.json ./ RUN npm install --legacy-peer-deps COPY . . RUN npm…
-1
votes
1 answer

How do I publish a port at run time of a Docker image on Amazon Ec2?

Currently, my Docker image runs as expected when run with the following line inside VSCode's CLI. docker run -it -d -p 5000:5000 flaskapp This allows me to open up http://localhost:5000/ and access it. However, if I were to run it on Docker…
Peek0
  • 173
  • 2
  • 9
-1
votes
1 answer

How to set environment variable in docker desktop in windows?

I used command "docker pull mysql:5.7.28" which showed image and container correctly in docker desktop but when trying to run the container it showed exited and error was MYSQL_ROOT_PASSWORD required. So I need to edit MYSQL_ROOT_PASSWORD in yaml…
Yogesh.galav
  • 225
  • 1
  • 5
  • 17
-1
votes
1 answer

running DockerFile of spring app is not working on windows

This is my Dockerfile FROM openjdk:8-jdk-alpine ARG JAR_FILES=target/*.jar COPY ${JAR_FILES} app.jar EXPOSE 9099 ENTRYPOINT ["java","-jar","/app.jar"] when running the commande docker build . inside the directoery of the project i got this error :
-1
votes
1 answer

Docker Desktop installation failed:Failed to start service

Failed to start service: The service did not respond to the start or control request in a timely fashion at CommunityInstaller.Service.Service.d__4.MoveNext() --- End of stack trace from previous location where exception was thrown…
-1
votes
1 answer

docker fails to open container in dev mode

im Starting a Dev-Mode Container in docker. the documentation says this line docker run -dp 3000:3000 -w /app -v $PWD:/app node:10-alpine sh -c "yarn install && yarn run dev" however this might be for linux im on windows. the rest of the internet…
-1
votes
1 answer

Docker Desktop: expose service not showing any valid EXTERNAL-IP

I'm new to Kubernetes. I am facing the following issue. I created a deployment using this command. $ kubectl run simple-deployment-14 --image cooldocker19/manas-simple-flask:v1.0 --port=5000 To expose it as a service, I used this. kubectl expose…
Manas Mukherjee
  • 5,270
  • 3
  • 18
  • 30
-1
votes
1 answer

Docker desktop for Mac: bind to tcp port

I'm running ShinyProxy (https://www.shinyproxy.io/) locally on my mac, together with Docker Desktop for Mac. ShinyProxy requires access to the Docker daemon via tcp, rather than just via unix socket. Just to be clear, Docker desktop binds by default…
Nick Melis
  • 403
  • 1
  • 7
  • 19
-1
votes
1 answer

DDEV does not seem to be instaling drupal (was working before)

I've been using DDEV & Docker-Desktop sucessfully to run installs of drupal8 on my windows 10 machine. Today I decided to create a new install of Drupal8 (I last did this a month ago or so). I followed the basic steps: Create new folder…
Mark
  • 75
  • 1
  • 7
-1
votes
1 answer

Windows Docker is routing to an unexpected IP and being lost

Look at this trace result: >tracert -d 172.18.0.6 Tracing route to 172.18.0.6 over a maximum of 30 hops 1 2 ms 2 ms 2 ms 192.168.2.1 2 3 ms 3 ms 8 ms 10.11.7.113 3 * * * Request timed out. You…
Mojtaba
  • 4,852
  • 5
  • 21
  • 38
-1
votes
1 answer

calling kubernetes api directly from react app errors with CORS exception

I spun up a "create react app" instance locally (localhost:3000). I added a button component that call k8s api's get pods command. using local docker-desktop k8s cluster and a proxy (kubectl proxy --port=8080): import {getPods} from…
Lior Baber
  • 852
  • 3
  • 11
  • 25
1 2 3
62
63