You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/onprem/de/introduction_docker.asciidoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ Nähere Informationen zu den benutzten Optionen:
144
144
Die Bezeichnungen für bereits vorhandene Images können Sie über den Befehl `docker images` auslesen.
145
145
146
146
| `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.
148
148
149
149
l|environment:
150
150
- CMK_PASSWORD=mypassword
@@ -161,20 +161,20 @@ l|environment:
161
161
Wir empfehlen aber die Verwendung der Umgebungsvariable `TZ`, da so mögliche plattformabhängige Kompatibilitätsprobleme im Umgang mit `/etc/localtime` vermieden werden.
162
162
163
163
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.
165
165
Das Volume namens `monitoring` wird im Container im Pfad `/omd/sites` eingebunden.
166
166
Volumes werden von der Docker Engine verwaltet und können mit `docker volume` eingesehen oder verändert werden.
167
167
Wenn der Container entfernt wird, gehen die Daten nicht verloren.
168
168
169
169
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.
171
171
Mit dieser Option geben Sie den Pfad zu diesem Dateisystem an.
172
172
Wenn Sie die Instanz beim Erstellen xref:environment_variables[anders benennen], so muss auch dieser Pfad entsprechend angepasst werden.
173
173
174
174
l|ports:
175
175
- 8080:5000
176
176
- 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.
178
178
Wenn Sie keinen anderen Container oder Prozess haben, welcher den Standard-HTTP-Port 80 benutzt, können Sie den Container auch daran binden.
179
179
In diesem Fall würde die Option so aussehen: `80:5000`.
180
180
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
349
349
[#login]
350
350
== Nutzung von {CMK} im laufenden Container
351
351
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:
Copy file name to clipboardExpand all lines: src/onprem/en/introduction_docker.asciidoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ More information about the options used:
145
145
You can read the names of existing images using the `docker images` command.
146
146
147
147
| `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.
149
149
150
150
l|environment:
151
151
- CMK_PASSWORD=mypassword
@@ -161,20 +161,20 @@ To do this, mount the file `/etc/localtime` located on the host as a volume in t
161
161
However, we recommend using the environment variable `TZ`, as this avoids possible platform-dependent compatibility issues when using `/etc/localtime`.
162
162
163
163
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.
165
165
The volume named `monitoring` is mounted in the container in the path `/omd/sites`.
166
166
Volumes are managed by the Docker Engine and can be viewed or modified with `docker volume`.
167
167
If the container is removed, the data is not lost.
168
168
169
169
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.
171
171
With this option, you specify the path to this file system.
172
172
If you specify a different name when creating the site, this path must also be updated accordingly.
173
173
174
174
l|ports:
175
175
- 8080:5000
176
176
- 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.
178
178
If you do not have another container or process that uses the standard HTTP port 80, you can also bind the container to it.
179
179
In this case, the option would look like this: `80:5000`.
180
180
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
350
350
[#login]
351
351
== Using {CMK} in the running container
352
352
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:
0 commit comments