From 53c5af71a93de7ad3da29016c0a3e23de103f205 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 6 Dec 2023 03:30:01 +0100 Subject: [PATCH] engine: remove mentions of upstart (eol) Closes #18854 Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/config/containers/multi-service_container.md | 4 ++-- content/config/containers/start-containers-automatically.md | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/content/config/containers/multi-service_container.md b/content/config/containers/multi-service_container.md index a552742c7c..f805758a59 100644 --- a/content/config/containers/multi-service_container.md +++ b/content/config/containers/multi-service_container.md @@ -25,8 +25,8 @@ your process falls into this category, you can use the `--init` option when you run the container. The `--init` flag inserts a tiny init-process into the container as the main process, and handles reaping of all processes when the container exits. Handling such processes this way is superior to using a -full-fledged init process such as `sysvinit`, `upstart`, or `systemd` to handle -process lifecycle within your container. +full-fledged init process such as `sysvinit` or `systemd` to handle process +lifecycle within your container. If you need to run more than one service within a container, you can achieve this in a few different ways. diff --git a/content/config/containers/start-containers-automatically.md b/content/config/containers/start-containers-automatically.md index 71c5a12c66..08a05cd264 100644 --- a/content/config/containers/start-containers-automatically.md +++ b/content/config/containers/start-containers-automatically.md @@ -72,8 +72,7 @@ Keep the following in mind when using restart policies: If restart policies don't suit your needs, such as when processes outside Docker depend on Docker containers, you can use a process manager such as -[upstart](http://upstart.ubuntu.com/), -[systemd](https://freedesktop.org/wiki/Software/systemd/), or +[systemd](https://freedesktop.org/wiki/Software/systemd/) or [supervisor](http://supervisord.org/) instead. > **Warning**