Git Product home page Git Product logo

docker-strider's Introduction

docker-strider

Semi-official docker build that does NOT ship with internal Mongo or SSH.

It contains supervisord, latest strider, its dependent modules and nodejs/npm.

You must pass in a DB_URI with a valid mongodb connection string.

Pulling

Hosted on Quay.io. Find what to docker pull by checking the TAG file

Building

Clone the project and docker build -t <TAG> .

Running

Say you've created a database at MongoLab, here's how you would run it:

docker run -e "DB_URI=mongodb://keyvan:[email protected]:41380/strider-testing" <TAG>

Linking

A compatible mongo image is included.

Following example should lead you into a side-by-side mongo/strider containers creation.

Building image mongodb-img: docker build -t mongodb-img ./mongo

Building image strider-img: docker build -t strider-img .

Launching a container called database based on previously built image mongodb-img: docker run -d --name database -i mongodb-img Notice that no ports were exposed.

Now we would create a container called strider based on previously built image strider-img image that is linked to previous launched database container. We also gonna to expose strider:3000 into host:80.

docker run -d \
  --name strider \
  --link database:database \
  -e "DB_URI=mongodb://database:27017" \
  -p 80:3000 \
  strider-img

Security

This image can generate an admin user with a random password. Set environment variable GENERATE_ADMIN_USER to use this feature.

docker-strider's People

Contributors

chengweiv5 avatar egalpin avatar kfatehi avatar knownasilya avatar niallo 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.