Skip to content

Commit c0378ac

Browse files
committed
v16.0.1
1 parent 8bb049c commit c0378ac

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

app/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM node:10-slim
1+
FROM node:12.15.0-slim
22

33
LABEL maintainer="Jonathan Gros-Dubois"
4-
LABEL version="16.0.0"
4+
LABEL version="16.0.1"
55
LABEL description="Docker file for SocketCluster with support for clustering."
66

77
RUN mkdir -p /usr/src/

app/kubernetes/scc-state-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
containers:
1616
-
1717
name: scc-state
18-
image: 'socketcluster/scc-state:v8.0.0'
18+
image: 'socketcluster/scc-state:v8.0.2'
1919
ports:
2020
-
2121
name: scc-state

app/kubernetes/scc-worker-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
containers:
1616
-
1717
name: scc-worker
18-
image: 'socketcluster/socketcluster:v16.0.0'
18+
image: 'socketcluster/socketcluster:v16.0.1'
1919
ports:
2020
-
2121
name: scc-worker

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ if (command === 'create') {
425425
} catch (e) {}
426426

427427
let dockerCommand = `docker run -d -p ${portNumber}:8000 -v ${absoluteAppPath}:/usr/src/app/ ` +
428-
`${envFlagString}--name ${appName} socketcluster/socketcluster:v16.0.0`;
428+
`${envFlagString}--name ${appName} socketcluster/socketcluster:v16.0.1`;
429429
try {
430430
execSync(dockerCommand, {stdio: 'inherit'});
431431
successMessage(`App "${appName}" is running at http://localhost:${portNumber}`);

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socketcluster",
3-
"version": "16.0.0",
3+
"version": "16.0.1",
44
"description": "Highly scalable realtime framework with support for async/await",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

0 commit comments

Comments
 (0)