Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
21 lines (17 loc) · 474 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 474 Bytes

Electron Github Release Proxy

A proxy for electron apps to download private release assets

Start this image via docker-compose

version: "3.2"
services:
  proxy:
    image: keyle/electron-github-release-proxy:latest
    environment:
      - ACCOUNT=<Put Your GitHub Username Here>
      - REPOSITORY=<Put Your Repo Here>
      - VERSION_PREFIX=<If You App Has A Prefix Put It Here>
      - TOKEN=<PAT>
    ports:
      - 3333:3333
    restart: always