forked from LaconicNetwork/kompose
Shell scripts to test k8s and os conversion which can be ran by following command in root dir `./script/test/cmd/tests.sh`
28 lines
868 B
JavaScript
28 lines
868 B
JavaScript
var express = require('express'),
|
|
http = require('http'),
|
|
redis = require('redis');
|
|
|
|
var app = express();
|
|
|
|
console.log(process.env.REDIS_PORT_6379_TCP_ADDR + ':' + process.env.REDIS_PORT_6379_TCP_PORT);
|
|
|
|
// APPROACH 1: Using environment variables created by Docker
|
|
// var client = redis.createClient(
|
|
// process.env.REDIS_PORT_6379_TCP_PORT,
|
|
// process.env.REDIS_PORT_6379_TCP_ADDR
|
|
// );
|
|
|
|
// APPROACH 2: Using host entries created by Docker in /etc/hosts (RECOMMENDED)
|
|
var client = redis.createClient('6379', 'redis');
|
|
|
|
|
|
app.get('/', function(req, res, next) {
|
|
client.incr('counter', function(err, counter) {
|
|
if(err) return next(err);
|
|
res.send('This page has been viewed ' + counter + ' times!');
|
|
});
|
|
});
|
|
|
|
http.createServer(app).listen(process.env.PORT || 8080, function() {
|
|
console.log('Listening on port ' + (process.env.PORT || 8080));
|
|
}); |