Code Monkey home page Code Monkey logo

docker-memo's Introduction

Docker memo

This is for testing docker feature & guide for daily usages

I. Daily used commands

  1. Check container running & already existed
docker ps
docker ps -f status=exited
  1. How to use Binding.pry or Byebug:

set 2 options to service in docker-compose & reset service

tty: true
stdin_open: true

docker ps # to get the id or name of container
docker attach name_of_container/or id
# after the execution stop at the `byebug` line, you can start debug

To correctly exit debug and detach, type continue to exit debug and then type CTRL + p + q to detach ( if you CTRL + D then CTRL + C it will stop the server container)

  1. How to access container and run commands:
docker ps
docker exec -it name_of_container/or id bash # now you are inside container, you can start running `rails console` 

☆\( ̄ー ̄)/☆

II. Scenerios

  1. binding current dir to using current dir code, mount sharing volume for bundle:
docker volume create test_ruby_volume
docker run -it --rm -v test_ruby_volume:/bundle -v ${PWD}:/app -w /app -e BUNDLE_PATH=/bundle ruby bash

docker-memo's People

Contributors

dang-hoang-hieu avatar

Watchers

 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.