Code Monkey home page Code Monkey logo

frames's Introduction


Notes


Docker

The directory registry lists a number of docker files, alongside supplements; in continuous development.



JupyterLab & Docker

An interesting article. One of its key examples is

docker container run --rm -i -t -p 10000:8888 jupyter/base-notebook

wherein   $-p \quad 10000:8888$   maps the host port $10000$ to container port $8888$.


Explore

In brief, base image exploration is via

docker run --rm -i -t -p 10000:8888 jupyter/base-notebook

Extend the base image via Dockerfile, and the command

docker build -t notebook .

Subsequently, a container/instance of the image notebook may be used as a development environment via the commands

docker run --rm -i -t -p 127.0.0.1:10000:8888 -w /app --mount type=bind,src="$(pwd)",target=/app notebook

or

docker run -i -t -p 127.0.0.1:10000:8888 -w /app --mount type=bind,src="$(pwd)",target=/app notebook

Note, the container's working environment, i.e., -w, must be inline with this project's top directory. For Visual Studio Code container attachment instructions study Attach Container.



References









frames's People

Contributors

greyhypotheses 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.