A simple UI for people to report issues to GitHub Repositories without having a GitHub Account
version: '3.3'
services:
issueReporter:
ports:
- '3000:3000'
restart: always
image: 'hrueger/issuereporter:latest'
environment:
APP_NAME: My IssueReporter
REPOSITORY: owner/repo
TOKEN: GITHUB_ACCESS_TOKEN
URL_KEY: someSecretKey
SECRET: anotherSecretYou can then access the IssueReporter on http://your-domain.tld:3000/someSecretKey. A Reverse Proxy is recommended.
MIT