From 0e2eaca8199617e1cdaffa42971bb7c8bd752a16 Mon Sep 17 00:00:00 2001 From: chrisjsimpson Date: Sat, 4 May 2024 16:08:58 +0100 Subject: [PATCH] Docs fix Update port-management.md RUN -> CMD --- docs/networking/port-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/networking/port-management.md b/docs/networking/port-management.md index 5368889a9..385acf0c3 100644 --- a/docs/networking/port-management.md +++ b/docs/networking/port-management.md @@ -163,7 +163,7 @@ For example, if the Dokku installation is configured with the domain `dokku.me` ``` FROM ubuntu:20.04 EXPOSE 1234 -RUN python -m SimpleHTTPServer 1234 +CMD python -m SimpleHTTPServer 1234 ``` The application would be exposed to the user at `node-js-app.dokku.me:1234`. If this is not desired, the following application configuration may be applied: