From 747513d1d59b0f1b2390c4b6aefd11a7bc91333b Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Fri, 27 May 2022 00:05:53 +0200 Subject: [PATCH] autopushed --- podman.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/podman.md b/podman.md index e330a8ff2..20248ff73 100644 --- a/podman.md +++ b/podman.md @@ -29,19 +29,19 @@ podman build -t agora . Builds an 'agora' container if there is a [[Dockerfile]] in the path. If you want to force a 'clean' build, pass `--no-cache`; I needed this in the [[Agora Dockerfile]] because I was using `git clone` and this was failing to pull in the latest revisions. -Then: +Then to run one interactively: ``` podman run -it agora ``` -To run one interactively, or: +Or to run one detached (server like): ``` podman run -dt --name agora agora ``` -To start one detached. Then you can: +Then you can: ``` podman attach agora