Linked Questions
20 questions linked to/from How to connect to a docker container from outside the host (same network) [Windows]
3476 votes
34 answers
6.2m views
How do I find out which process is listening on a TCP or UDP port on Windows? [closed]
How do I find out which process is listening on a TCP or UDP port on Windows?
9 votes
5 answers
8k views
How to access a docker container running on MacOSX from another host?
I'm trying to get started with docker and want to run the Ubiquiti video controller. I have installed Docker Toolbox and managed to get the container to run on my Yosemite host and can access it on ...
5 votes
1 answer
8k views
How to access Docker container from another machine on lan
I'm using Docker Desktop for Mac and running a container on my host machine. I'm able to access the container via localhost on host machine. But it is not available from other systems on lan. The ...
1 vote
2 answers
4k views
Run docker container on localhost via VM
I'm new to Docker and Containers, and I'm trying to run a simple asp.net web app in a container but running into issues. My OS is Windows 10 Home, so I have to use the Docker Toolbox, which runs on a ...
2 votes
1 answer
5k views
How to get from Android Emulator to Docker Machine's container?
I have a Windows laptop with Docker Toolbox installed. So my backend services live in docker containers. Also, I have an Android Emulator with client application installed. I know that I can get ...
2 votes
1 answer
2k views
Docker Postgresql remote access
PostgreSQL 13 is running on a remote machine in a docker container. I can't get access to it remotely in any way, the error is no pg_hba.conf entry for host, ssl is disabled. Connect from the local ...
-1 votes
1 answer
2k views
how to call service which is running inside docker container from my localhost ? in windows machine
Here it is my Dockerfile Dockerfile: FROM openjdk:8 ADD target/demo.jar demo.jar EXPOSE 8080 ENTRYPOINT ["java","-jar","demo.jar"] It is running inside the docker container. when i run curl -v ...
2 votes
1 answer
547 views
Unable to access hosted app from docker in Windows
I started to play around with docker for a while and got stuck with the below: Here's my Environment: Windows 10 boot2docker/Docker version 1.12.0 Virtual box 5.0.24 this is what i'm trying to do: $...
0 votes
1 answer
672 views
How to set the Docker IP the same as your computer (local) IP address
I have just spent some hours to find a solution to my problem : The problem : I want to host a FTP server (in Docker) on my computer and I want to have access to it from a classic server on an other ...
0 votes
1 answer
524 views
Connect docker container (django app) to windows lan
I would like to run a docker in our windows environment so that staff can access the application from their own computers, but cannot get it working. I have tried both solutions of NAT and bridged ...
1 vote
1 answer
685 views
How to access docker container outside the host on local network?
How can i access my container on Docker-Desktop from other computer ? 028872c0210d web "docker-entrypoint.s…" x hours ago | Up x hours 0.0.0.0:4200->4200/tcp web 90bcf87bbf3b api "...
2 votes
0 answers
694 views
Running OPC Server in a Docker container
I have a OPC Server created using the .net SDK running in a separate docker container inside a multi-docker environment. I want to use the IP Address of the Host Machine in the OPC UA Endpoint URL. So ...
1 vote
1 answer
488 views
Exposing Docker Container to outside world
I'm currently learning Kubernetes as part of a project and facing a small hurdle which I hope you guys can help me in crossing. The ask is to build a docker application that can be accessed over the ...
1 vote
0 answers
573 views
How to access container running in Docker from outside of my PC
I am using Docker desktop in Windows. Now I am running rabbitmq inside docker. I can access the rabbitMq using localhost:5672 from my browser. However, when I try to access the rabbitMq from my mobile ...
0 votes
0 answers
401 views
Access a webserver inside a docker container from outside
I want to access my tomcat webserver which is running inside a docker container from another computer. For now I have a docker-compose.yml file which I start with the command docker-compose up -d ...