From c25701c34f1a007159b1912ac2733599e7909151 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Mon, 24 Jun 2019 12:49:50 -0700 Subject: [PATCH] Clean up links --- Readme.md | 2 +- mole/Dockerfile | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index fae0e02..a1fcdda 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,6 @@ # Dockamole -Example bridging connections across two distinct Docker networks using `mole`. +Example bridging connections across two distinct Docker networks using [`mole`](https://github.com/davrodpin/mole). My real use case is something like a remote LDAP server that I don't want to expose to the public internet and some metrics servers only available behind a VPN. This setup will allow me to create a proxy container on a host that will act as a local LDAP or HTTP server. diff --git a/mole/Dockerfile b/mole/Dockerfile index 47fba25..4679c1f 100644 --- a/mole/Dockerfile +++ b/mole/Dockerfile @@ -1,6 +1,3 @@ -# FROM golang -# RUN go get -u github.com/davrodpin/mole/cmd/mole - FROM alpine RUN apk add bash curl tar RUN bash -c "bash <(curl -fsSL https://raw.githubusercontent.com/davrodpin/mole/master/tools/install.sh | sed 's/\bsudo\b//g')"