install the normal way:
wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb & > /dev/null
sudo apt-get update
sudo apt-get upgrade
FROM node | |
COPY ./package.json ./yarn.lock ./tsconfig.json /opt/debugger/ | |
WORKDIR /opt/debugger | |
RUN set -x \ | |
&& yarn | |
COPY ./ /opt/debugger |
#!/bin/bash | |
# GITLAB_HOSTNAME="gitlab.acme.org" # <- Change this to your actual domain... | |
# DOCKER_NAMESPACE="acme" # <- Change this to your actual company... | |
# ALLOWED_IMAGES="$DOCKER_NAMESPACE/*" | |
# DEFAULT_IMAGE="$DOCKER_NAMESPACE/build" | |
# ADMIN_IMAGE="$DOCKER_NAMESPACE-dind" | |
DOCKER_COMPOSE_VERSION=1.15.0 |
{ | |
"rules": { | |
"align": [ | |
true, | |
"parameters", | |
"arguments", | |
"statements" | |
], | |
"ban": false, | |
"class-name": true, |
install the normal way:
wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb & > /dev/null
sudo apt-get update
sudo apt-get upgrade
#LDAP
LDAP stands for Lightweight Directory Access Protocol and serve a method for accessing and maintaining distributed directory information over an Internet Protocol (IP) network.
LDAP uses a reverse domain structure with normal dot-notation. Every part of the reverse domain structure has a special meaning defined with LDIF.
LDAP data interchange format (LDIF) is an interchange format to represent LDAP directory content.
#!/bin/bash | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
echo "Starting with Mountain Lion start helper" | |
$DIR/JavaApplicationStub & |