Questions tagged [docker-container]

Docker Containers are the core of the docker platform in which programs and applications can be packaged and run in simulated environments.

Docker containers are the core of the docker program in which programs and applications can run in simulated environments.

These containers serve as a way to simulate code that would otherwise cause irreversible changes to a systems hardware. The difference between this and a virtual machine is that the docker container does not run code on the same level as the virtual machine on top of the fact that it is a lot more portable.

Docker containers can be loaded with any type of environment, even your currently used machine, or serve as simple tool boxes for your file sytems.

For more info, see the official documentation of a docker container.

863 questions
-2
votes
2 answers

How to build multiple containers in Jenkins file?

I have 3 different Docker images. I need to build these images from Jenkins file. I have Wildfly, Postgres, Virtuoso Docker images with individual Docker file. As of now, I am using the below command to build these images: 'sh docker build docker…
-2
votes
1 answer

How to access node.js angular application outside container

i have a node js angular application which i am trying to containerize it. i am using Docker file to build the image and run the docker i am not getting any error and the build is success Node.js build Dockerfile
Ajay R
  • 1
  • 4
-2
votes
1 answer

Delete docker specific images

I need some kind of Docker behaviour. Imagine docker image name is imagename and image also have tag(1, 2, 3 ...). Now I want to delete all images with the name imagename and with the tag that isn't x. For example if I have…
-2
votes
1 answer

docker on ubuntu 16.04 error when stopping container

I'm totally new with Docker and tried to create my first container from an image I built from my aspnetcore project. The image was built, I could started a container but I want to change some things so I need to remove this container. Problems…
Gobelet
  • 303
  • 2
  • 4
  • 13
-2
votes
1 answer

Unable to connect to SQL Server database from docker containers

I created a simple ASP.NET MVC web application using .Net Core and SQL Server technology stack. I followed the official Microsoft documentation and its working fine with the database. Then I added docker support in my project. The docker image…
-2
votes
1 answer

How to find a process's pid in docker host namespace from inside a container in which it is running

I have a process running inside a container. I want to know this process's pid in docker host namespace from inside the container. I have a docker client installer inside the container from which I can execute a few commands but I do not have full…
Ru2ja
  • 1
  • 4
-3
votes
1 answer

Do I need to buy a static ip address for docker containers?

I am new to docker, and couldn't find answer to my question anywhere else... I want to assign static ip addresses to my docker containers, but don't know how to... Does is mean that I need to buy static ip for my device? Please helppp!!! Thank you…
-3
votes
4 answers

Monitoring tool for docker containers

We have a AWS Server with docker installed and configured. We are running few docker containers and also we want to monitor all the docker containers like CPU Usage, Memory Usage, Disk Usage, etc. Is it possible to monitor docker container remotely…
1 2 3
57
58