Skip to content

Instantly share code, notes, and snippets.

@swisslala
swisslala / docker-compose.yml
Created February 14, 2018 02:32 — forked from osadalakmal/docker-compose.yml
docker compose file for bringing up a HA vault cluster with one active server and two standby servers.
version: '2'
networks:
consul_net:
driver: bridge
ipam:
driver: default
config:
-
subnet: 172.16.238.0/24
// Restify Server CheatSheet.
// More about the API: http://mcavage.me/node-restify/#server-api
// Install restify with npm install restify
// 1.1. Creating a Server.
// http://mcavage.me/node-restify/#Creating-a-Server
var restify = require('restify');