This file contains hidden or 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
| yum -y install redhat-lsb glibc gdb | |
| yum -y install MarkLogic-8.0-2.x86_64.rpm | |
| ln -s libsasl2.so.3.0.0 libsasl2.so.2 | |
| systemctl enable MarkLogic | |
| systemctl start MarkLogic |
This file contains hidden or 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 gulp = require('gulp'); | |
| var gutil = require('gulp-util') | |
| var watch = require('gulp-watch'); | |
| var plumber = require('gulp-plumber'); | |
| var shell = require('gulp-shell') | |
| var roxy = { | |
| 'cwd': 'roxy', | |
| 'env': 'local', | |
| 'db' : { |
This file contains hidden or 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
| find . -type d -name 'node_modules' -print0 | xargs -0 -I {} rm -rf "{}" |
This file contains hidden or 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 centos:centos6 | |
| MAINTAINER Richard Louapre <richard.louapre@marklogic.com> | |
| #update yum repository and install openssh server | |
| RUN yum update -y | |
| RUN yum install -y openssh-server | |
| #generate ssh key | |
| RUN ssh-keygen -q -N "" -t dsa -f /etc/ssh/ssh_host_dsa_key | |
| RUN ssh-keygen -q -N "" -t rsa -f /etc/ssh/ssh_host_rsa_key |