summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD Delmar Davis <don@suspectdevices.com>2025-12-06 22:19:19 -0800
committerD Delmar Davis <don@suspectdevices.com>2025-12-06 22:19:19 -0800
commit470e10e0f1124db7d654b74f58aadadc4fe71ab9 (patch)
tree8f5095dbc9a58187ed9cbcaa4c56e167b8e11eae
parent6248eed6442f1a9fc80e80f5c5f35de1642acd02 (diff)
test mkdocs update
-rw-r--r--docs/rethinkeverything/k8s-Docker/makingdockerbehave.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/rethinkeverything/k8s-Docker/makingdockerbehave.md b/docs/rethinkeverything/k8s-Docker/makingdockerbehave.md
index c2b2caa..5f728c5 100644
--- a/docs/rethinkeverything/k8s-Docker/makingdockerbehave.md
+++ b/docs/rethinkeverything/k8s-Docker/makingdockerbehave.md
@@ -17,7 +17,7 @@ Deployments should be as self contained as possible. Data such as ssl certificat
For docker host deployments, the repository containing any docker-compose files and related resources should be cloned to a predictable path. The pattern we use at work and at home is.
-/usr/local/\<organization\>/service/\<repo_name\>/
+/usr/local/\< organization \>/service/\< repo_name \>/
## Making Docker Behave
@@ -34,6 +34,7 @@ There are a bagillian ways for docker applications to log errors and other messa
Here is an example of limits set in a hosts /etc/docker/daemon.json file
+```sh
{
"log-driver": "local",
"log-opts": {
@@ -42,6 +43,7 @@ Here is an example of limits set in a hosts /etc/docker/daemon.json file
"compress": "true"
}
}
+```
### Restart Policy
@@ -78,5 +80,5 @@ healthcheck:
```
## References
-- https://www.dash0.com/guides/mastering-docker-logs
-- https://docs.docker.com/reference/dockerfile/#healthcheck \ No newline at end of file
+- [https://www.dash0.com/guides/mastering-docker-logs](https://www.dash0.com/guides/mastering-docker-logs)
+- [https://docs.docker.com/reference/dockerfile/#healthcheck](https://www.dash0.com/guides/mastering-docker-logs) \ No newline at end of file