This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=App Redis Sidekick | |
Requires=docker.service | |
Requires=etcd.service | |
After=docker.service | |
After=etcd.service | |
After=app-redis.service | |
BindsTo=app-redis.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=App Redis Sidekick | |
Requires=docker.service | |
Requires=etcd.service | |
After=docker.service | |
After=etcd.service | |
After=app-redis.service | |
BindsTo=app-redis.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Ross Kukulinski "[email protected]" | |
RUN apt-get -qq update | |
RUN apt-get -qq install -y python-software-properties software-properties-common curl git build-essential supervisor emacs23-nox nano | |
RUN add-apt-repository -y ppa:chris-lea/node.js | |
RUN apt-get -qq update | |
RUN apt-get -qq install -y nodejs | |
RUN npm -g install npm | |
RUN npm -g install bower gulp grunt-cli bunyan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'), | |
zlib = require('zlib'), | |
tar = require('tar'), | |
pkgcloud = require('pkgcloud'), | |
log = require('../../common/logging'), | |
argv = require('optimist').argv; | |
var logger = log.getLogger('debug'); | |
var client = pkgcloud.storage.createClient({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#--------------------------------- | |
# nodesupervisor Start/Stop Script | |
#--------------------------------- | |
#--------------------------------- | |
# chkconfig: 2345 99 99 | |
# description: NodeJS Supervisor | |
# -------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ADMIN_PASSWORD=devstack | |
MYSQL_PASSWORD=devstack | |
RABBIT_PASSWORD=devstack | |
SERVICE_PASSWORD=devstack | |
SERVICE_TOKEN=devstack | |
SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5 | |
SWIFT_REPLICAS=1 | |
PUBLIC_INTERFACE=eth1 |