1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 18:06:36 +02:00

add nginx-proxy-manager

This commit is contained in:
kev 2024-07-22 11:51:40 +08:00
parent 1939fbdf1e
commit a5e0e7b26d
6 changed files with 24 additions and 0 deletions

View File

@ -432,6 +432,7 @@ A collection of delicious docker recipes.
- [x] sonatype/nexus3
- [x] nextcloud
- [ ] jwilder/nginx-proxy
- [x] jc21/nginx-proxy-manager
- [x] luzifer/nginx-sso
- [x] tiangolo/nginx-rtmp :camera:
- [x] jupyter/notebook

View File

@ -0,0 +1,6 @@
nginx-proxy-manager
===================
[Nginx Proxy Manager][1] expose your services easily and securely.
[1]: https://nginxproxymanager.com/

View File

@ -0,0 +1,2 @@
load_module /usr/lib/nginx/modules/ngx_http_geoip2_module.so;
load_module /usr/lib/nginx/modules/ngx_stream_geoip2_module.so;

View File

View File

@ -0,0 +1,15 @@
version: "3.8"
services:
npm:
image: "jc21/nginx-proxy-manager:2"
ports:
- "80:80"
- "443:443"
- "81:81"
volumes:
- ./data/npm:/data
- ./data/ssl:/etc/letsencrypt
environment:
- DB_SQLITE_FILE=/data/database.db
- DISABLE_IPV6=true
restart: unless-stopped