From e7a02dd7a6396d633cc97f41f1849065c18d9cd2 Mon Sep 17 00:00:00 2001 From: krufab Date: Sun, 5 Nov 2017 00:43:03 +0100 Subject: [PATCH] pull/213 Improved help message for Links and Network mode fields (#214) * pull/213 Improved help message for Links and Network mode fields * pull/213 Removed div wrapper --- .../yad/commons/DockerCreateContainer/help-linksString.html | 4 +++- .../yad/commons/DockerCreateContainer/help-networkMode.html | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-linksString.html b/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-linksString.html index 3b97ed6b..e2b31c51 100644 --- a/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-linksString.html +++ b/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-linksString.html @@ -1 +1,3 @@ -Add link to another container. +Add link to another container. Only the form container:alias is supported (e.g. the_db_container:db). +
+Consult https://docs.docker.com/engine/userguide/networking/default_network/dockerlinks/#communication-across-links for further information. diff --git a/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-networkMode.html b/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-networkMode.html index 34e4b0f4..6bbcaebc 100644 --- a/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-networkMode.html +++ b/yet-another-docker-plugin/src/main/resources/com/github/kostyasha/yad/commons/DockerCreateContainer/help-networkMode.html @@ -3,7 +3,7 @@
  • Empty: undefined, docker daemon defaults
  • 'bridge': creates a new network stack for the container on the docker bridge
  • 'none': no networking for this container
  • -
  • 'container:<name|id>': reuses another container network stack +
  • 'container:<name | id>': reuses another container network stack
  • 'host': use the host network stack inside the container. Note: the host mode gives the container full access to local system services such as D-bus and is therefore considered insecure.