Skip to content
This repository has been archived by the owner on Apr 27, 2018. It is now read-only.

Commit

Permalink
Merge pull request #2 from kriswill/feature/node-0.10.35
Browse files Browse the repository at this point in the history
Update stable to Node 0.10.35, Add latest-sails-experimental option
  • Loading branch information
Globegitter committed Dec 27, 2014
2 parents 10c870d + a8ef593 commit 92a5238
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ Docker-sails

This Docker Container is based on /~https://github.com/docker-library/node and installs the latest stable version of [Sails.js](http://sailsjs.org/) and is used with the [Sane Stack](/~https://github.com/artificialio/sane).

You have the docker tags `0.10.32` (fixed versions), `latest` (node 0.11 and latest dependencies), `stable` (node 0.10 and latest dependencies) as well as `0.10.32-pm2`, `latest-pm2` , `stable-pm2` which adds [PM2](/~https://github.com/Unitech/PM2) to manage your app.
You have the docker tags `0.10.35` (fixed versions), `latest` (node 0.11 and latest dependencies), `stable` (node 0.10 and latest dependencies) as well as `0.10.35-pm2`, `latest-pm2` , `stable-pm2` which adds [PM2](/~https://github.com/Unitech/PM2) to manage your app.

`latest-sails-edge` tracks the canary release candidate for [Sails.js](http://sailsjs.org), currently at [rc4](/~https://github.com/balderdashy/sails/tree/v0.11.0-rc4), running on node 0.11.
2 changes: 1 addition & 1 deletion node-0.10.34/Dockerfile → node-0.10.35/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dockerfile for Sane-stack to run sails.js API application
############################################################

FROM node:0.10.34-slim
FROM node:0.10.35-slim

MAINTAINER Markus Padourek <markus@artificial.io>

Expand Down
2 changes: 1 addition & 1 deletion node-0.10.34-pm2/Dockerfile → node-10.35-pm2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dockerfile for Sane-stack to run sails.js API application
############################################################

FROM node:0.10.34-slim
FROM node:0.10.35-slim

MAINTAINER Markus Padourek <markus@artificial.io>

Expand Down
19 changes: 19 additions & 0 deletions node-latest-sails-edge/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
############################################################
# Dockerfile for Sane-stack to run sails.js API application
############################################################

FROM node:0.11-slim

MAINTAINER Markus Padourek <markus@artificial.io>

RUN npm install -g sails@v0.11.0-rc4 grunt bower pm2 npm-check-updates
RUN mkdir /server

# Define mountable directories.
VOLUME ["/server"]

# Define working directory.
WORKDIR /server

# Expose ports.
EXPOSE 1337

0 comments on commit 92a5238

Please sign in to comment.