KeystoneJS CMS using 4.0.0-beta.4 version
10K+
Supported tags and respective Dockerfile links
latest (Dockerfile)sass (sass/Dockerfile)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.
Optionally start mongo db
docker run --name your-mongo -d mongo
Add the mongo db settings into .env
MONGO_URI=mongodb://mongo
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
Content type
Image
Digest
Size
283.9 MB
Last updated
over 9 years ago
docker pull keyfun/keystonejs