Skip to content

Instantly share code, notes, and snippets.

@andreareginato
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreareginato/0c3fe99b703fafe68125 to your computer and use it in GitHub Desktop.
Save andreareginato/0c3fe99b703fafe68125 to your computer and use it in GitHub Desktop.
exports.mqtt = {
type: 'process',
specific: {
repositoryUrl: 'git@github.com:lelylan/mqtt.git',
execute: {
args: '-e "DEBUG=lelylan" -e "REDIS_HOST=178.62.31.9" -p 1883:1883 -d'
}
}
};
exports.haproxy = {
type: 'process',
specific: {
repositoryUrl: 'git@github.com:lelylan/haproxy-mqtt.git',
execute: {
args: '-p 80:80 -p 1883:1883 -p 8883:8883 -v /certs:/certs/ -d'
}
}
};
exports.redis = {
type: 'process',
specific: {
name: 'redis',
execute: {
args: '-d -p 6379:6379'
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment