Sign inSign up

keyfun/keystonejs

By keyfun

Updated over 9 years ago

KeystoneJS CMS using 4.0.0-beta.4 version

Image
2

10K+

keyfun/keystonejs repository overview

Supported tags and respective Dockerfile links

Initiative

The image is aiming to deploy keystonejs without rebuilding the image to install dependencies. It is particularly useful when the server has limited computational power, like f1-micro in google cloud.

To use the image from scratch
  1. Generate the keystonejs project

  2. Optionally start mongo db

     docker run --name your-mongo -d mongo
    
  3. Add the mongo db settings into .env

     MONGO_URI=mongodb://mongo
    
  4. Run the container by the following command

     docker run -p 80:3000 -it -d --link your-mongo:mongo --name keystonejs -v "$PWD":/usr/src/app keyfun/keystonejs
    

alternatively if sass is enabled

    docker run -p 80:3000 -it -d --link your-mongo:mongo --name keystonejs -v "$PWD":/usr/src/app keyfun/keystonejs:sass

Tag summary

Content type

Image

Digest

Size

283.9 MB

Last updated

over 9 years ago

docker pull keyfun/keystonejs