Skip to content

Latest commit

 

History

History
38 lines (19 loc) · 1.2 KB

awesome-docker.md

File metadata and controls

38 lines (19 loc) · 1.2 KB

🐋 Docker awesome command line for day by day!

Intro & Documentation

What is Docker?

Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. By taking advantage of Docker's methodologies for shipping, testing, and deploying code, you can significantly reduce the delay between writing code and running it in production.

Docker Overview

Docker Reference

Docker CLI

Docker Resources

Main command

  • docker build -t jdk18:1 . - docker build image from this (".") folder/context of a Dockerfile

  • docker run -it -d 5b7ea5501286 - run container image in detached mode

  • docker run --name jdk18 -it -d eaa0a2a - run container image with name in detached mode

  • docker exec -it jdk18 bash

Example with some context

WIP