These slides are made with RemarkJS and should be viewable in any browser. From the desktop, you can press "P" to see presenter notes. PDF's have also been included when possible. For the slides with a live terminal, use "W" and "E" to pause/play the recording.
Note: if you have cloned the repo locally, and are viewing the presentations by double clicking the html files, some embedded content may not display. There are several possible solutions:
- View the content online, everything should be available from the links to GitHub pages.
- If you have docker, run
local/run-nginx.sh
to start a web server on port 5080. - For Firefox, go to
about:config
and try settingprivacy.file_unique_origin
tofalse
. See CVE-2019-11730 for more details.
This is an overview of what it takes to build a secure software supply chain, to tooling available, and where development is still in progress. This also covers the value of reproducible builds.
This is a workshop on setting up your own local registry mirror, including the process to garbage collect stale images.
Covering containers, images, networks, volumes, security, and building images. These slides are still under development.
Images as they are saved on a registry, covering manifests, configs, and layers.
Shows how to use regctl, regsync, and regbot from the regclient projects.
How to use registry mirroring and caching to optimize your image registry, reducing time to build and deploy, while also saving bandwidth.
Covering multi-stage, buildkit, buildx, and multi-architecture images from the perspective of a Go user.
Note, this talk is from DockerCon 2018 EU and is a continuation on the "Tips and Tricks of the Docker Captains" theme that was first started by Captain Adrian Mouat. Check out his talk from DockerCon 2018 in San Francisco.
There was also a webinar given based on the above talk. Slides are almost identical to those above:
-
I use the player from: https://github.com/asciinema/asciinema-player
-
The following commands are used to build a recording:
# Install asciinema: apt-get install asciinema # Setup a window: printf '\e[8;26;100t' # set window size to 100x26 tmux new-session -s preso PS1='\n\$ ' # minimal prompt # After windows are setup, detach from tmux (Ctrl-B D) # Create a recording: asciinema rec name.cast -i 3 -c "tmux attach -t preso" # Stop the recording by detaching (Ctrl-B D) # Tip: Edit the recording to remove the last few milliseconds of the detach # Replay the recording: asciinema play name.cast
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License