mirror of https://github.com/docker/docs.git
Merge pull request #1018 from FrenchBen/add-port-8888
Added 8888 as webport and fixed indents
This commit is contained in:
commit
e01c96903a
|
|
@ -130,11 +130,9 @@ module.exports = {
|
||||||
}
|
}
|
||||||
if (v1parts[i] === v2parts[i]) {
|
if (v1parts[i] === v2parts[i]) {
|
||||||
continue;
|
continue;
|
||||||
}
|
} else if (v1parts[i] > v2parts[i]) {
|
||||||
else if (v1parts[i] > v2parts[i]) {
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -158,5 +156,5 @@ module.exports = {
|
||||||
linuxToWindowsPath: function (linuxAbsPath) {
|
linuxToWindowsPath: function (linuxAbsPath) {
|
||||||
return linuxAbsPath.replace('/c', 'C:').split('/').join('\\');
|
return linuxAbsPath.replace('/c', 'C:').split('/').join('\\');
|
||||||
},
|
},
|
||||||
webPorts: ['80', '8000', '8080', '3000', '5000', '2368', '9200', '8983']
|
webPorts: ['80', '8000', '8080', '8888', '3000', '5000', '2368', '9200', '8983']
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue