<aside> 💡 Estimated Time TBD

</aside>

Goal

Deploy and customize a docker container

Setup

  1. Open up VS Code and connect over SSH to your Digital Ocean Droplet VM. We connected to this at the end of Lab2. Reference here for more details.

References

Official Ansible documentation

Reference documentation

Docker Run

Kali

Docker run is the simplest way to get started with Docker. Lets use docker run a little and get an idea of what we can do with docker.

Run the following command to get an interactive session with Kali.

docker run --tty --interactive kalilinux/kali-rolling /bin/bash

Docker Interactive Kali

Docker Interactive Kali

One command and we have a full Kali terminal. No long install and you can run or install anything we would normally install with Kali. This is useful and simple, but let's kick it up a little.

Kali HTML5