Questions tagged [docker]

Docker is an open-source project to easily create lightweight, portable, self-sufficient containers from any application.

Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere.

Docker containers can encapsulate any payload, and will run consistently on and between virtually any server. The same container that a developer builds and tests on a laptop will run at scale, in production*, on VMs, bare-metal servers, OpenStack clusters, public instances, or combinations of the above.

Origin: http://www.docker.io/learn_more/

126 questions
13
votes
3 answers

Are there benefits to running my development environment in a Docker container?

I develop primarily using Visual Studio on Windows. The problem is that after a while Windows gets bogged down and I'm faced with needing to reinstall Windows. Similarly switching to new machines is a problem. Reinstalling Windows is painful…
Jim W
  • 241
  • 1
  • 6
7
votes
1 answer

Are Docker images tied to CPU architectures?

Linux Onlyoffice Docker scripts are available for download. Are docker containers tied to a particular CPU architecture (IA64 vs ARM)? I would like to run Onlyoffice on an ARM platform (Raspbery Pi 4 or similar SBC computer).
gatorback
  • 217
5
votes
1 answer

What are the advantages running a local docker registry?

I do not have production experience with docker and have several questions regarding a local registry: A dockerfile is the description (=recipe) of how an image is built(=cooked, e.g. FROM alpine:3.5) If the image on my Docker Host isn't present,…
Thomas Junk
  • 9,533
2
votes
1 answer

Broadcast a message to all container replicas

I have two web services, one of which creates resources on disk for the other one to read and process. The resources are subject to irregular change, so I'd like to inform the consumer service when a resource is updated instead of polling and saving…
Felix
  • 377
1
vote
1 answer

Docker for fullstack developer

As Docker became a very popular tool I read a lot of information about it but I can't get - do I need it as single full-stack developer? I develop web application that has 2 backend services written in ASP.NET Core and C++ talking to PostgreSQL…
0
votes
2 answers

Is it safe for container orchestration to replace unhealthy containers?

I'm new to docker and I'm reading a book which says: Docker can't safely replaced an unhealthy container. Docker could remove that container and start a new one from the same setup, but maybe your app writes data inside the container, so that would…
slowjams
  • 127
0
votes
0 answers

Install another OS in docker container?

Learning docker concepts and tried few hello world. Came up with below questiob which I could not find on google. Say I am on Linux box. I want to to install and run windows (along with java, tomcat) in docker container on top of Linux. Is it…
user3198603
  • 1,896
0
votes
1 answer

When deploying a production app using docker, should I still use volumes or should I use add in the dockerfile?

I've been working on this little rails app with docker for a while and I'm finally ready to move it into production but I'm not sure what the best practice is for deploying a Docker app. When developing my app I was using volumes because waiting for…
benbot
  • 131