Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 439 Bytes

step_to_docker.md

File metadata and controls

28 lines (17 loc) · 439 Bytes

Welcome to the first step to docker

how to run

run the alpine:3.10

docker run -it alpine:3.10
docker run -it node:12-stretch bash

to kill all the running containers

docker kill $(docker ps -q)

Dockerfile

It is basically a series of instruction that is used for building the doceker containers

build a dockerfile reffer the link [click here ...]