Update daemon docs for exec drivers
| ... | ... |
@@ -83,7 +83,7 @@ Commands |
| 83 | 83 |
-p, --pidfile="/var/run/docker.pid": Path to use for daemon PID file |
| 84 | 84 |
-r, --restart=true: Restart previously running containers |
| 85 | 85 |
-s, --storage-driver="": Force the docker runtime to use a specific storage driver |
| 86 |
- -e, --exec-driver="": Force the docker runtime to use a specific exec driver |
|
| 86 |
+ -e, --exec-driver="native": Force the docker runtime to use a specific exec driver |
|
| 87 | 87 |
-v, --version=false: Print version information and quit |
| 88 | 88 |
--mtu=0: Set the containers network MTU; if no value is provided: default to the default route MTU or 1500 if no default route is available |
| 89 | 89 |
|
| ... | ... |
@@ -96,6 +96,8 @@ To set the DNS server for all Docker containers, use ``docker -d -dns 8.8.8.8``. |
| 96 | 96 |
|
| 97 | 97 |
To run the daemon with debug output, use ``docker -d -D``. |
| 98 | 98 |
|
| 99 |
+To use lxc as the execution driver, use ``docker -d -e lxc``. |
|
| 100 |
+ |
|
| 99 | 101 |
The docker client will also honor the ``DOCKER_HOST`` environment variable to set |
| 100 | 102 |
the ``-H`` flag for the client. |
| 101 | 103 |
|