Code Monkey home page Code Monkey logo

docker-tips's Introduction

Collection of Docker Commands

Markdown Cheatsheet

Generic

Connect to running container
$ docker exec -it "CONTAINER_ID" /bin/bash

Launch single container
$ docker run --name=NAME --env-file="ENV_FILE" -it "IMAGE_NAME" /bin/bash

List all containers
$ docker ps -a

List all images
$ docker images

Delete local image
$ docker rmi IMAGE_ID

Delete all image versions
$ docker rmi -f $(docker images IMAGE_NAME -q -a)

Delete all untagged images
$ docker rmi $(docker images | grep "^<none>" | awk '{ print $3 }')

Push image to shared repo
$ docker rmi $(docker images | grep "^<none>" | awk '{ print $3 }') $ docker rmi $(docker images | grep "^<none>" | awk '{ print $3 }')

NPM

NPM scripts example "scripts": { "docker:build": "npm run build && docker build -t IMAGE_NAME:latest .", "docker:deploy": "npm run docker:build && docker tag IMAGE_NAME:latest $npm_config_repo/IMAGE_NAME:$npm_package_version && docker push $npm_config_repo/IMAGE_NAME:$npm_package_version", "docker:run": "docker run -i -t IMAGE_NAME:$npm_package_version" }

docker-tips's People

Contributors

gtsopour avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.