Skip to content

Instantly share code, notes, and snippets.

View muhammaddadu's full-sized avatar
✍️
Building something probably

Muhammad Dadu muhammaddadu

✍️
Building something probably
View GitHub Profile
@muhammaddadu
muhammaddadu / debug-docker-config.sh
Created September 18, 2018 19:22 — forked from augustovictor/debug-docker-config.sh
Debug vscode docker es6
# docker-compose.yml
...
command: npm run debug
ports:
- "3000:3000"
- "9229:9229"
...
--------------------------------------------------------
@muhammaddadu
muhammaddadu / docker-compose-gitlab.yml
Created April 30, 2018 22:20 — forked from cweilguny/docker-compose-gitlab.yml
A docker-compose config in v3 format for nginx-proxy with separate containers for nginx, dockergen and letsencrypt-companion. Additional example on how to get GitLab docker container running with this nginx-proxy setup. You need to create the docker network before, just run 'docker network create nginx-proxy'. Docker will tell you so if you don'…
version: '3'
services:
web:
image: 'gitlab/gitlab-ce:latest'
restart: always
hostname: 'gitlab.example.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'https://gitlab.example.com'
nginx['listen_port'] = 80