GithubHelp home page GithubHelp logo

00mjk / docker-npm-cache Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tswicegood/docker-npm-cache

0.0 0.0 0.0 5 KB

Docker container that serves as an npm cache

Shell 20.30% Nginx 79.70%

docker-npm-cache's Introduction

docker-npm-cache

Docker container that implements a very basic npm cache via nginx as outlined by this post from Yammer.

Usage

Grab a copy of this from hub:

docker pull tswicegood/npm-cache

You must provide a PORT environment variable when running this. You should map that port to the container's port 80 via -p. For example, if you want to use port 8080, you can do this:

export PORT=8080
docker run -d -e PORT=$PORT -p $PORT:80 tswicegood/npm-cache

Next you need to adjust npm to use this as your registry. If you're on boot2docker with a host IP address of 192.168.59.103, you need to adjust your config like this:

npm config set registry http://192.168.59.103:8080/

Configuring host

You can configure the host name using -e HOST=<your host> to run this from. For example, to run it on port 8080 of npm.example.org, you can run it like this:

export PORT=8080
export HOST=npm.example.org
docker run -d -e HOST=$HOST -e PORT=$PORT -p $PORT:80 tswicegood/npm-cache

Have fun!

docker-npm-cache's People

Contributors

jseppi avatar stormagic-zz avatar tswicegood 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.