Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (30 loc) · 602 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 602 Bytes

Brionne

Caddy-based reverse proxy for authenticating B4CKSP4CE residents with Teleport App Access.

Example

Docker Compose:

services:
  authproxy:
    image: ghcr.io/b4ck5p4c3/brionne:latest
    restart: unless-stopped
    security_opt:
      - no-new-privileges:true
    cap_add:
      - NET_ADMIN
    ports:
      - "127.0.0.1:1337:80"
    environment:
      - UPSTREAM="http://whoami"
    networks:
      - internal

  whoami:
    image: traefik/whoami
    restart: unless-stopped
    hostname: whoami
    expose:
      - 80
    networks:
      - internal

networks:
  internal: