From 2d8ac25651bf45c0f6e3b96ecdb2de7edb3cf993 Mon Sep 17 00:00:00 2001 From: sid palas Date: Sun, 29 Jan 2023 15:05:43 -0500 Subject: [PATCH] add ruby and php commands --- 04-using-3rd-party-containers/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04-using-3rd-party-containers/README.md b/04-using-3rd-party-containers/README.md index cca2d00..f648dc8 100644 --- a/04-using-3rd-party-containers/README.md +++ b/04-using-3rd-party-containers/README.md @@ -336,23 +336,23 @@ docker run -it --rm debian:bullseye-slim docker run -it --rm alpine:3.17.1 # https://hub.docker.com/_/busybox -docker run -it busybox:1.36.0 # small image with lots of useful utilities +docker run -it --rm busybox:1.36.0 # small image with lots of useful utilities ``` #### ii. Programming runtimes: ```bash # https://hub.docker.com/_/python -docker run -it python:3.11.1 +docker run -it --rm python:3.11.1 # https://hub.docker.com/_/node -docker run -it node:18.13.0 +docker run -it --rm node:18.13.0 # https://hub.docker.com/_/php - +docker run -it --rm php:8.1 # https://hub.docker.com/_/ruby - +docker run -it --rm ruby:alpine3.17 ``` ### C. CLI Utilities