diff --git a/docs/options.md b/docs/options.md
index b8bd19cad..cff480caa 100644
--- a/docs/options.md
+++ b/docs/options.md
@@ -13,26 +13,52 @@ docker run -e VAR_NAME=VALUE ...
| Env Variables |
Description |
+Default values |
| DB_URL |
-The database URL to use in URL format. See [Databases](operating/databases/README.md) for more information. Default: BoltDB in current working directory `bolt.db`. |
+The database URL to use in URL format. See [Databases](operating/databases/README.md) for more information. |
+$(pwd)/bolt.db |
| MQ_URL |
-The message queue to use in URL format. See [Message Queues](mqs/README.md) for more information. Default: BoltDB in current working directory `queue.db`. |
+The message queue to use in URL format. See [Message Queues](mqs/README.md) for more information. |
+$(pwd)/queue.db |
| API_URL |
The primary IronFunctions API URL to that this instance will talk to. In a production environment, this would be your load balancer URL. |
+N/A |
| PORT |
-Sets the port to run on. Default: `8080`. |
+Sets the port to run on |
+8080 |
| LOG_LEVEL |
-Set to `DEBUG` to enable debugging. Default: INFO. |
+Set to DEBUG to enable debugging |
+INFO |
+
+
+| DOCKER_HOST |
+Docker remote API URL |
+/var/run/docker.sock:/var/run/docker.sock |
+
+
+| DOCKER_API_VERSION |
+Docker remote API version |
+1.24 |
+
+
+| DOCKER_TLS_VERIFY |
+Set this option to enable/disable Docker remote API over TLS/SSL. Default: 0 |
+0 |
+
+
+| DOCKER_CERT_PATH |
+Set this option to specify where CA cert placeholder |
+~/.docker/cert.pem |