Go to file
NlightN22 acaf99c878 refactoring
add host filter to main page
add timer to loader
decompose host filter
filter admin menu from drawer
fix cameratransferlist buttons
2024-03-07 00:55:34 +07:00
example rename production environments 2024-03-03 15:36:01 +07:00
nginx init 2024-02-17 22:57:32 +07:00
public fix lint warns 2024-03-01 03:21:13 +07:00
src refactoring 2024-03-07 00:55:34 +07:00
.env.docker rename production environments 2024-03-03 15:36:01 +07:00
.gitignore fix lint warns 2024-03-01 03:21:13 +07:00
Dockerfile refactoring 2024-03-07 00:55:34 +07:00
env.ps1 fix lint warns 2024-03-01 03:21:13 +07:00
env.sh fix lint warns 2024-03-01 03:21:13 +07:00
package.json fix frigate hosts infinity rendering after save 2024-03-02 16:13:28 +07:00
README.md rename production environments 2024-03-03 15:36:01 +07:00
tsconfig.json fix lint warns 2024-03-01 03:21:13 +07:00
yarn.lock fix lint warns 2024-03-01 03:21:13 +07:00

Instruction

Frontend for Proxy Frigate

  • create file: docker-compose.yml
version: '3.1'

services:
  front:
    image: oncharterliz/multi-frigate:latest
    environment:
      FRIGATE_PROXY: http://localhost:4000
      OPENID_SERVER: https://server:port/realms/your-realm
      CLIENT_ID: frontend-client
    ports:
      - 80:80 # set your port here
  • run:
docker compose up -d