Skip to content

Commit 453f60e

Browse files
committed
content-sync pick-24 pick-25 fix docker wording
1 parent ca475de commit 453f60e

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/onprem/de/introduction_docker.asciidoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Nähere Informationen zu den benutzten Optionen:
144144
Die Bezeichnungen für bereits vorhandene Images können Sie über den Befehl `docker images` auslesen.
145145
146146
| `container_name: "monitoring"` | Selbst gewählter sprechender Name für den Container.
147-
Dieser Name muss eindeutig sein und darf auf dem Docker-Node kein zweites Mal verwendet werden.
147+
Dieser Name muss eindeutig sein und darf auf dem Docker-Host kein zweites Mal verwendet werden.
148148
149149
l|environment:
150150
- CMK_PASSWORD=mypassword
@@ -161,20 +161,20 @@ l|environment:
161161
Wir empfehlen aber die Verwendung der Umgebungsvariable `TZ`, da so mögliche plattformabhängige Kompatibilitätsprobleme im Umgang mit `/etc/localtime` vermieden werden.
162162
163163
l|volumes:
164-
- monitoring:/omd/sites | Diese Angabe bindet die Daten der Instanz in diesem Container an eine persistente Stelle im Dateisystem des Docker-Nodes.
164+
- monitoring:/omd/sites | Diese Angabe bindet die Daten der Instanz in diesem Container an eine persistente Stelle im Dateisystem des Docker-Hosts.
165165
Das Volume namens `monitoring` wird im Container im Pfad `/omd/sites` eingebunden.
166166
Volumes werden von der Docker Engine verwaltet und können mit `docker volume` eingesehen oder verändert werden.
167167
Wenn der Container entfernt wird, gehen die Daten nicht verloren.
168168
169169
l|tmpfs:
170-
- /opt/omd/sites/cmk/tmp:uid=1000,gid=1000 | Für eine optimale Performance können Sie ein temporäres Dateisystem direkt im RAM des Docker-Nodes nutzen.
170+
- /opt/omd/sites/cmk/tmp:uid=1000,gid=1000 | Für eine optimale Performance können Sie ein temporäres Dateisystem direkt im RAM des Docker-Hosts nutzen.
171171
Mit dieser Option geben Sie den Pfad zu diesem Dateisystem an.
172172
Wenn Sie die Instanz beim Erstellen xref:environment_variables[anders benennen], so muss auch dieser Pfad entsprechend angepasst werden.
173173
174174
l|ports:
175175
- 8080:5000
176176
- 8000:8000 | Der Webserver des Containers lauscht standardmäßig auf Port 5000.
177-
In diesem Beispiel wird der Port 8080 des Docker-Nodes an den Port 5000 des Containers gebunden, damit dessen Web-Interface von außen erreichbar ist.
177+
In diesem Beispiel wird der Port 8080 des Docker-Hosts an den Port 5000 des Containers gebunden, damit dessen Web-Interface von außen erreichbar ist.
178178
Wenn Sie keinen anderen Container oder Prozess haben, welcher den Standard-HTTP-Port 80 benutzt, können Sie den Container auch daran binden.
179179
In diesem Fall würde die Option so aussehen: `80:5000`.
180180
Die Nutzung von HTTPS wird im Abschnitt xref:https[HTTPS] erläutert.
@@ -349,7 +349,7 @@ Benachrichtigungen werden zunächst von der Instanz innerhalb des Containers an
349349
[#login]
350350
== Nutzung von {CMK} im laufenden Container
351351
352-
Nachdem alle benötigten Dateien geladen wurden und der Container gestartet ist, sollten Sie die GUI von {CMK} über `\http://localhost:8080/cmk/check_mk/` beziehungsweise über die Adresse des Docker-Nodes erreichen:
352+
Nachdem alle benötigten Dateien geladen wurden und der Container gestartet ist, sollten Sie die GUI von {CMK} über `\http://localhost:8080/cmk/check_mk/` beziehungsweise über die Adresse des Docker-Hosts erreichen:
353353
354354
image::login.png[alt="{CMK}-Anmeldedialog.",width=60%]
355355
@@ -393,7 +393,7 @@ Um einen Container zu entfernen, führen Sie `docker compose down` (bei laufende
393393
[green]#✔# Network cmk_compose_default Removed 0.1s
394394
----
395395
396-
Wenn Sie die Option `-v` ergänzen, werden zusammen mit dem Container auch die dazugehörigen Volumes auf dem Docker-Node entfernt.
396+
Wenn Sie die Option `-v` ergänzen, werden zusammen mit dem Container auch die dazugehörigen Volumes auf dem Docker-Host entfernt.
397397
398398
[IMPORTANT]
399399
====

src/onprem/en/introduction_docker.asciidoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ More information about the options used:
145145
You can read the names of existing images using the `docker images` command.
146146

147147
| `container_name: "monitoring"` | Self-chosen descriptive name for the container.
148-
This name must be unique and may not be used a second time on the Docker node.
148+
This name must be unique and may not be used a second time on the Docker host.
149149

150150
l|environment:
151151
- CMK_PASSWORD=mypassword
@@ -161,20 +161,20 @@ To do this, mount the file `/etc/localtime` located on the host as a volume in t
161161
However, we recommend using the environment variable `TZ`, as this avoids possible platform-dependent compatibility issues when using `/etc/localtime`.
162162

163163
l|volumes:
164-
- monitoring:/omd/sites | This specification binds the site's data in this container to a persistent location in the file system of the Docker node.
164+
- monitoring:/omd/sites | This specification binds the site's data in this container to a persistent location in the file system of the Docker host.
165165
The volume named `monitoring` is mounted in the container in the path `/omd/sites`.
166166
Volumes are managed by the Docker Engine and can be viewed or modified with `docker volume`.
167167
If the container is removed, the data is not lost.
168168

169169
l|tmpfs:
170-
- /opt/omd/sites/cmk/tmp:uid=1000,gid=1000 | For optimal performance, you can use a temporary file system directly in the RAM of the Docker node.
170+
- /opt/omd/sites/cmk/tmp:uid=1000,gid=1000 | For optimal performance, you can use a temporary file system directly in the RAM of the Docker host.
171171
With this option, you specify the path to this file system.
172172
If you specify a different name when creating the site, this path must also be updated accordingly.
173173

174174
l|ports:
175175
- 8080:5000
176176
- 8000:8000 | The container's web server listens on port 5000 by default.
177-
In this example, port 8080 of the Docker node is bound to port 5000 of the container so that its web interface is accessible from the outside.
177+
In this example, port 8080 of the Docker host is bound to port 5000 of the container so that its web interface is accessible from the outside.
178178
If you do not have another container or process that uses the standard HTTP port 80, you can also bind the container to it.
179179
In this case, the option would look like this: `80:5000`.
180180
The use of HTTPS is explained in the section xref:https[HTTPS].
@@ -350,7 +350,7 @@ Notifications are first forwarded by the site within the container to the mailse
350350
[#login]
351351
== Using {CMK} in the running container
352352

353-
Once all the necessary files have been loaded and the container has started, you should be able to access the {CMK} GUI via `\http://localhost:8080/cmk/check_mk/` or via the address of the Docker node:
353+
Once all the necessary files have been loaded and the container has started, you should be able to access the {CMK} GUI via `\http://localhost:8080/cmk/check_mk/` or via the address of the Docker host:
354354

355355
image::login.png[alt="{CMK} login dialog.",width=60%]
356356

@@ -396,7 +396,7 @@ To remove a container, run `docker compose down` (with the container running) or
396396
[green]#✔# Network cmk_compose_default Removed 0.1s
397397
----
398398

399-
If you add the `-v` option, the associated volumes on the Docker node will also be removed along with the container.
399+
If you add the `-v` option, the associated volumes on the Docker host will also be removed along with the container.
400400

401401
[IMPORTANT]
402402
====

0 commit comments

Comments
 (0)