A simple Docker Container with Nginx Proxy Manager.
437
This repository contains a custom-built Docker image of the Nginx Proxy Manager. It is designed for easy deployment across multiple environments with persistent storage for configurations and SSL certificates.
To use this image on your server, create a docker-compose.yml file and paste the following content:
version: '3.8'
services:
nginx-proxy-manager:
image: tiwutdev/tiwut-nginx-proxy-manager:latest
container_name: nginx-proxy-manager
restart: unless-stopped
ports:
- '80:80' # HTTP Traffic
- '81:81' # Admin Web Interface
- '443:443' # HTTPS Traffic
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
Content type
Image
Digest
sha256:23e307e0f…
Size
371 MB
Last updated
4 months ago
docker pull tiwutdev/tiwut-nginx-proxy-manager