Skip to content

Instantly share code, notes, and snippets.

View atd-schubert's full-sized avatar

Arne Schubert atd-schubert

View GitHub Profile
@atd-schubert
atd-schubert / Dockerfile
Created February 20, 2019 08:10
InteliJ with connected debugger on a TypeScript Project in Docker
FROM node
COPY ./package.json ./yarn.lock ./tsconfig.json /opt/debugger/
WORKDIR /opt/debugger
RUN set -x \
&& yarn
COPY ./ /opt/debugger
@atd-schubert
atd-schubert / gitlab-docker-provisioning.sh
Last active August 30, 2017 09:32
Create your own GitLab instance on ubuntu with docker
#!/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,
@atd-schubert
atd-schubert / Gitlab-with-unbundled-nginx.md
Last active February 26, 2024 12:14
gitlab with own nginx

How to setup gitlab without embedded nginx

Install via omnibus-package

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
@atd-schubert
atd-schubert / LDAP.md
Created January 5, 2015 09:59
Summery for LDAP

#LDAP

Description

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.

Components

LDIF

LDAP data interchange format (LDIF) is an interchange format to represent LDAP directory content.

List of representations

@atd-schubert
atd-schubert / starter.sh
Created April 9, 2013 12:53
Solution for starting ArgoUML in Mac OSX Mountain Lion
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo "Starting with Mountain Lion start helper"
$DIR/JavaApplicationStub &