https://github.com/frozenfoxx/docker-nginx-jenkins
Nginx reverse proxy for a local Jenkins
https://github.com/frozenfoxx/docker-nginx-jenkins
docker jenkins nginx
Last synced: about 2 months ago
JSON representation
Nginx reverse proxy for a local Jenkins
- Host: GitHub
- URL: https://github.com/frozenfoxx/docker-nginx-jenkins
- Owner: frozenfoxx
- License: apache-2.0
- Created: 2020-04-07T17:10:19.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-09-01T23:06:15.000Z (almost 5 years ago)
- Last Synced: 2025-06-25T05:11:30.245Z (12 months ago)
- Topics: docker, jenkins, nginx
- Language: Shell
- Homepage:
- Size: 37.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nginx-jenkins
[](https://cloud.drone.io/frozenfoxx/docker-nginx-jenkins)
Nginx reverse proxy for a local Jenkins.
Docker: [https://hub.docker.com/repository/docker/frozenfoxx/nginx-jenkins](https://hub.docker.com/repository/docker/frozenfoxx/nginx-jenkins)
# Requirements
* a deployed local Jenkins.
# How to Build
```
git clone https://github.com/frozenfoxx/docker-nginx-jenkins.git
cd docker-nginx-jenkins
docker build . -t frozenfoxx/nginx-jenkins:latest
```
# How to Use this Image
## Quickstart
The following will start up the container, SSL terminate, and redirect to the local host:
```
docker run -d \
-it \
-p 443:443/tcp \
--network=host \
--name=nginx-jenkins \
frozenfoxx/nginx-jenkins:latest
```