19 lines
661 B
Markdown
19 lines
661 B
Markdown
---
|
|
date: 2022-06-11T17:33:55Z
|
|
draft: true
|
|
aliases: []
|
|
categories: ['docker']
|
|
series: ['apprentice']
|
|
tags: ['programming', 'devops', 'docker']
|
|
chroma: false
|
|
toc: true
|
|
title: Docker
|
|
description: Introduction to Docker for local development and production deployment ready images.
|
|
---
|
|
|
|
Docker is a super container management system that let's you isolate programs and services running on servers.
|
|
This is very useful, both during development and for production deployment.
|
|
Because all dependencies may be bundled into the "docker image", and if the program/service is hacked.
|
|
The adversary will only have access to the container.
|
|
Which with proper configuration
|