Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
t0ny-peng committed Aug 21, 2021
1 parent 3564e3a commit 29309ba
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frigate/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM nginx:alpine
ENV LANG C.UTF-8

RUN apk add bash vim

COPY frigate.conf /etc/nginx/conf.d/
16 changes: 16 additions & 0 deletions frigate/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "frigate_ingress",
"version": "0.0.1",
"slug": "frigate",
"description": "Start frigate server",
"arch": ["amd64"],
"url": "https://github.com/t0ny-peng/ha-frigate-addon",
"startup": "application",
"boot": "auto",
"ingress": true,
"map": ["share"],
"image": "left4taco/ha-frigate-addon",
"panel_icon": "mdi:cctv",
"panel_title": "Frigate",
"panel_admin": true
}
9 changes: 9 additions & 0 deletions frigate/frigate.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
server {
listen 8099;
server_name localhost;
access_log off;
error_log off;
location / {
proxy_pass http://frigate.lan.pengs.us:5000 ;
}
}
Binary file added frigate/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions repository.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "ha-frigate-addon",
"url": "https://github.com/t0ny-peng/ha-frigate-addon",
"maintainer": "Left4taco"
}

0 comments on commit 29309ba

Please sign in to comment.