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
Embed this episode
What this episode covers
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 ...
NOW PLAYING
23: Containers - What's in the box????
No transcript for this episode yet
Similar Episodes
No similar episodes found.
Similar Podcasts
No similar podcasts found.