🦲
mind
  • cleber's mind
  • plans
    • fact checking
    • personal assistant
  • self-management
    • agenda and tasks
    • mails and emails
  • knowledge
    • career
    • programming
      • Big O Notation
      • browsing data
      • C/C++
      • databases
      • eclipse
      • gradle
      • java
        • apache camel
      • javascript
      • naming convention
      • mysql
      • prolog
      • regex
      • REST
      • ssl/tls
      • version control
        • git commands
      • web-semantics
      • wot
    • research
      • mas
      • planning
      • math
        • probability
      • machine learning
      • nlp
      • speech recognition
      • data sources
      • data visualisation
    • it
      • asterisk
      • containers
        • installing docker
        • deploying busybox
        • deploying a sample
        • deploying node-red
        • deploying from the hub
      • clusters
        • installing kubernetes
        • deploying bootcamp
        • deploying nginx
        • deploying jacamo-rest
        • grafana
      • deploy
        • heroku
      • linux
        • tmux
        • vim
        • startup
      • networks
      • pdf
        • ssh
    • productivity
    • language
      • expressions
        • nice signposts
        • linking expressions
      • latex
      • scientific
      • writing
    • sailing
    • financial
      • assets
    • emergency
    • out of boxes
  • teaching
    • eletrônica digital
      • Conversão decimal para binário
      • Conversão binário para decimal
      • Sinais analógicos vs digitais
    • programação I
    • cabeamento estruturado
  • moments
    • insightful ai facts
    • ai4industry-hackathon
    • previous activities
  • brasil
  • external links
    • personal webpage
    • my github
Powered by GitBook
On this page
  • Pulling and running busybox image
  • Running terminal on busybox
  • Deleting all stopped containers

Was this helpful?

  1. knowledge
  2. it
  3. containers

deploying busybox

Deploying busybox sample docker container

Pulling and running busybox image

  • Pulling the image $ docker pull busybox

  • Executing a simple command on busybox $ docker run busybox echo "hello from busybox"

    • Executing and automatically deleting busybox $ docker run --rm busybox echo "hello from busybox"

Running terminal on busybox

  • Open terminal on busybox $ docker exec -it busybox sh

Deleting all stopped containers

  • List last commands that ran recently$ docker ps -a

  • Deleting stopped containers $ docker container prune or $ docker rm $(docker ps -a -q -f status=exited)

Previousinstalling dockerNextdeploying a sample

Last updated 1 year ago

Was this helpful?