GitXplorerGitXplorer
m

docker-https-redirect

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
8b2c189d09b6535930e25ba456fd7ecaf8d096e1

execute push job on scheduled build

mmattberther committed 4 years ago
Verified
607351edc162b8a49e034d3309cff68c318195e8

create docker publish github workflow (#1)

mmattberther committed 5 years ago
Unverified
bdfc6960a1275cef27222f338502c5d46249efbc

initial commit

mmattberther committed 5 years ago

README

The README file for this repository.

docker-https-redirect

A simple nginx container that redirects http requests to https.

Usage

This container can be used from the commandline, or using docker-compose.

CLI

docker run \
    --name=redirector \
    -p 32834:80 \
    mattberther/https-redirect

Compose

version: '3'

services:
    redirector:
        image: mattberther/https-redirect
        ports:
            - "32834:80"