In detached mode (-d=true or just -d), all I/O should be done
through network connections or shared volumes because the container is
no longer listening to the command line where you executed docker run.
Run Reference - Docker Documentation - 0 views
-
-
start the process in the container and attach the console to the process's standard input, output, and standard error. It can even pretend to be a TTY (this is what most command line executables expect) and pass along signals.
-
For interactive processes (like a shell) you will typically want a tty as well as persistent standard input (STDIN), so you'll use -i -t together in most interactive cases.
Getting Started with Docker - Servers for Hackers - 0 views
-
Docker is an isolated portion of the host computer, sharing the host kernel (OS) and even its bin/libraries if appropriate.
-
the Docker Container contains the parts that make Ubuntu different from CoreOS.
-
A Docker container only stays alive as long as there is an active process being run in it.
- ...10 more annotations...
Networking with overlay networks | Docker Documentation - 0 views
-
The manager host will function as both a manager and a worker, which means it can both run service tasks and manage the swarm.
-
connected together using an overlay network called ingress
-
each of them now has an overlay network called ingress and a bridge network called docker_gwbridge
- ...7 more annotations...
1 - 4 of 4
Showing 20▼ items per page