23: Containers - What's in the box???? episode artwork

EPISODE · Mar 7, 2026 · 1H 41M

23: Containers - What's in the box????

from Runtime Arguments · host Jim McQuillan & Wolf

Containers have become the standard way for deploying applications on servers and the web and sometimes even on the desktop.In this episode we dive into what containers are, how they work, how to build them and what you can do with them.Whether you are using containers in your development environment, deploying on servers in your data center or as a cloud service, containers save time, handle dependencies, increase security and just make things easier and better in so many ways.We discuss several commands to build and run containers and we've included examples here:Dockerfile example:-------------------------------------------------------------------------------------------------------FROM ubuntuRUN apt update && apt install -y apache2ENTRYPOINT [ "/usr/sbin/apachectl", "-D", "FOREGROUND", "-k", "start" ]-------------------------------------------------------------------------------------------------------Build the image using the above Dockerfile:    docker buildx build --tag my_container ./Run the container:    docker run -p 8080:80 -d my_containerNow, point your web browser at http://localhost:8080 (assuming you did this on your desktop)Display a list of running containers:    docker compose lsAttach to a running container and get a shell:    docker exec -it [container name] /bin/bashStop a container:    docker container stop [container name]Start it running again:    docker container start [container name]Remove a container (after stopping it)    docker container rm [container name]Hosts:Jim McQuillan can be reached at [email protected] can be reached at [email protected] us on Mastodon: @[email protected] you have feedback for us, please send it to [email protected] our webpage at http://RuntimeArguments.fmTheme music:Dawn by nuer self, from the album Digital Sky

Episode metadata supplied by the publisher feed · Published Mar 7, 2026

Embed this episode

Containers have become the standard way for deploying applications on servers and the web and sometimes even on the desktop. In this episode we dive into what containers are, how they work, how to build them and what you can do with them. Whether you are using containers in your development environment, deploying on servers in your data center or as a cloud service, containers save time, handle dependencies, increase security and just make things easier and better in so many ways. We discuss ...

Distinct summary based on available episode metadata or transcript content.

NOW PLAYING

23: Containers - What's in the box????

0:00 1:41:00

No transcript for this episode yet

We transcribe on demand. Request one and we'll notify you when it's ready — usually under 10 minutes.

No similar episodes found.

No similar podcasts found.

Frequently Asked Questions

How long is this episode of Runtime Arguments?

This episode is 1 hour and 41 minutes long.

When was this Runtime Arguments episode published?

This episode was published on March 7, 2026.

Is there a transcript available for this episode?

Yes, a full transcript is available for this episode. You can read the complete transcript on the episode page.

Can I download this Runtime Arguments episode?

Yes. Use the download control on the episode player to save the publisher-provided media file.
URL copied to clipboard!