From 29e31efbdcfaf12443126cd9a16943a2adfeef58 Mon Sep 17 00:00:00 2001 From: sid palas Date: Fri, 17 Feb 2023 17:01:27 -0500 Subject: [PATCH] fix demo image tag --- 04-using-3rd-party-containers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04-using-3rd-party-containers/README.md b/04-using-3rd-party-containers/README.md index a0e1c9a..c072da7 100644 --- a/04-using-3rd-party-containers/README.md +++ b/04-using-3rd-party-containers/README.md @@ -37,7 +37,7 @@ Let's experiment with how installing something into a container at runtime behav ```bash # Create a container from the ubuntu image -docker run --interactive --tty --rm ubuntu:2 +docker run --interactive --tty --rm ubuntu:22.04 # Try to ping google.com ping google.com -c 1 # This results in `bash: ping: command not found`