Docker Letsencrypt Nginx Proxy Companion Examples

Examples for combining docker-gen and letsencrypt-nginx-proxy-companion
Alternatives To Docker Letsencrypt Nginx Proxy Companion Examples
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Traefik42,233182 days ago160September 16, 2022607mitGo
The Cloud Native Application Proxy
Awesome Compose22,242
a day ago7April 23, 202198cc0-1.0HTML
Awesome Docker Compose samples
Nginx Proxy16,901
a day ago448mitPython
Automated nginx proxy for Docker containers using docker-gen
Apisix11,510
10 hours ago650apache-2.0Lua
The Cloud-Native API Gateway
Telepresence5,6894a day ago355September 23, 2022404otherGo
Local development against a remote Kubernetes or OpenShift cluster
Proxypool4,411
25 days ago33mitPython
An Efficient ProxyPool with Getter, Tester and Server
Netflix Proxy3,430
4 months ago5mitPython
Smart DNS proxy to watch Netflix
Gluetun3,076
8 hours ago51April 25, 2021124mitGo
VPN client in a thin Docker container for multiple VPN providers, written in Go, and using OpenVPN or Wireguard, DNS over TLS, with a few proxy servers built-in.
Lamda2,482
5 days ago3Python
⚡️ Android reverse engineering & automation framework | 史上最强安卓抓包/逆向/HOOK & 云手机/远程桌面/自动化辅助框架,你的工作从未如此简单快捷。
Proxy.py2,357795 days ago37June 28, 202269bsd-3-clausePython
⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • 😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • 👮🏿 "Proxy Server" framework • 🌐 "Web Server" framework • ➵ ➶ ➷ ➠ "PubSub" framework • 👷 "Work" acceptor & executor framework
Alternatives To Docker Letsencrypt Nginx Proxy Companion Examples
Select To Compare


Alternative Project Comparisons
Readme

docker-letsencrypt-nginx-proxy-companion-examples

This repository is meant to be a starting point for working with nginx-proxy, docker-gen and docker-letsencrypt-nginx-proxy-companion by providing basic working bootstrapped examples that combines them.

Choosing how to run things

Running docker containers can be done either using the command line interface (CLI), or using docker-compose

docker run

Replace all the default "site.example.com" and "[email protected]" occurrences in docker-run/simple-site/docker-run.sh for your publicly accessible domain redirecting to the server running the script.

$ ./docker-run.sh

docker-compose v1

While docker-compose v1 file version isn't advised for starting new project, docker-gen hasn't yet officially resolved the issue raised by new networking in docker-compose v2, you might find it easier to stick with v1.

Replace all the default "site.example.com" and "[email protected]" occurrences in docker-compose/v1/simple-site/docker-compose.yml for your publicly accessible domain redirecting to the server running the script.

$ docker-compose up

docker-compose v2

V2 support for docker-gen is being done through @almereyda's unofficial solution. See above for compose v1.

Replace all the default "site.example.com" and "[email protected]" occurrences in docker-compose/v2/simple-site/docker-compose.yml for your publicly accessible domain redirecting to the server running the script.

First, you'll need to create an external docker network named 'nginx-proxy' (or change the name in compose file).

docker network create -d bridge nginx-proxy

You'll only need to do this once.

$ docker-compose up

Debugging

You should use docker logs to see the output of your daemonized containers.

$ docker logs nginx

You can also checkout the docker-gen generated "default.conf" file using docker exec

$ docker exec -it nginx-gen cat /etc/nginx/conf.d/default.conf

Notes

If you want to help out the community, feel free to submit a PR with other examples for popular site/apps such as Wordpress, ghost...

I'll try to add some myself provided this repo gets enough stars.

Popular Docker Projects
Popular Proxy Projects
Popular Virtualization Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Shell
Docker
Proxy
Nginx
Letsencrypt