Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 796 Bytes

docker.md

File metadata and controls

54 lines (45 loc) · 796 Bytes
title description created updated
Docker
Docker Build, Ship and Run commands
2018-10-22
2022-10-01

Build

Building an image from Dockerfile

docker build -t app_name:1.0 .

List all images

docker images

Ship

Push docker image

docker push user_id/my_image

Run

Run docker image

docker run -p 8001:8001 -it  app_name:1.0

List all running containers

docker ps

Kill a running container

docker kill container_name/ container_id 

Prune

docker system prune     # prune all docker resources
docker system prune -f  # prune all resources with force (without prompt)

Dockerfile syntax

FROM ubuntu:16.04 # from base image
RUN apt-get update # execute commands
ADD local_directory /
EXPOSE 8080