Git Product home page Git Product logo

coba-docker's Introduction

Coba Docker

this project is my attempt to try/learn using docker

files that will be served:

please do not expose this image to external network since it have security vulnerability (a.k.a. remote code execution, exposing system information), use this project on your own risk

how to use:

  • install docker (look for specific guide for your OS, in Windows you probably download and install from .exe or .msi, while in linux you should probably run apt install docker or pacman -S docker)
  • to build the container: sudo docker image build --no-cache -t coba-docker .
    • run the command in cloned repo
    • option --no-cache = do not cache the repository (only needed when repository content changed)
    • option -t coba-docker = set the newly built image's name to coba-docker
  • to run the container: sudo docker run --name coba-docker-instance -d -p 8080:8080 coba-docker
    • option --name = give the newly run container instance a name coba-docker-instance
    • option -d = detached (run in background)
    • option -p = create mapping of port 8080 (container) to port 8080 (hypervisor) so you can access the content from localhost:8080
    • last argument coba-docker: name of the image to be used
  • to open shell of the container: docker exec --tty -i coba-docker-instance /bin/sh
    • option --tty = use pseudo tty
    • option -i = interactive shell
  • to edit/reload container:
    • stop container process: docker container stop coba-docker-instance
    • remove container: docker container rm coba-docker-instance
    • rebuild the image: docker image build --no-cache -t coba-docker
    • run the newly built image docker run --name coba-docker-instance -d -p 8080:8080 coba-docker

coba-docker's People

Watchers

Kristian Tanuwijaya 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.