# dsrp **Repository Path**: mirrors_codejamninja/dsrp ## Basic Information - **Project Name**: dsrp - **Description**: A secure minimalistic docker reverse proxy - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DSRP (Docker Secure Reverse Proxy) ![](assets/dsrp.png) A reverse proxy setup for docker that uses letsencrypt for ssl encryption over the https protocol ## Install ### Docker ``` curl -L https://get.docker.com | sudo bash ``` ### DSRP ``` curl -L https://raw.githubusercontent.com/jamrizzi/dsrp/master/dsrp.sh | sudo bash ``` ## Usage ```sh docker run --name some-container \ -e VIRTUAL_HOST=example.com \ -e VIRTUAL_PORT=8080 \ -e LETSENCRYPT_HOST=example.com \ -e LETSENCRYPT_EMAIL=email@example.com \ my/container:latest ```