This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| db: | |
| image: mariadb | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: wordpress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export DEBIAN_FRONTEND=noninteractive | |
| DISTRO="bullseye" | |
| RELEASE="stable" | |
| NODEREPO="node_16.x" | |
| try() { | |
| bash -c "$1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin | |
| export PATH | |
| LANG=en_US.UTF-8 | |
| panelPort="7800" | |
| if [ $(whoami) != "root" ]; then | |
| echo "Please use the [root] user to execute the aapanel installation script!" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| frigate: | |
| container_name: frigate | |
| privileged: true # this may not be necessary for all setups | |
| restart: unless-stopped | |
| image: ghcr.io/blakeblackshear/frigate:stable-rk | |
| shm_size: "128mb" # update for your cameras based on calculation above | |
| devices: | |
| - /dev/dri | |
| - /dev/dma_heap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mqtt: | |
| enabled: false | |
| cameras: | |
| Office1: # <------ Name the camera | |
| enabled: true | |
| ffmpeg: | |
| inputs: | |
| - path: rtsp://username:password@192.168.10.29:554/11 # <----- The stream you want to use for detection | |
| roles: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| shinobi-image: | |
| container_name: shinobi-pro | |
| ports: | |
| - 8081:8080/tcp | |
| volumes: | |
| - $HOME/shinobi-docker/streams:/dev/shm/streams:rw | |
| - $HOME/shinobi-docker/config:/config:rw | |
| - $HOME/shinobi-docker/customAutoLoad:/home/Shinobi/libs/customAutoLoad:rw | |
| - $HOME/shinobi-docker/database:/var/lib/mysql:rw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http { | |
| upstream backend_servers { | |
| server 192.168.100.101; | |
| server 192.168.100.102; | |
| server 192.168.100.103; | |
| } | |
| server { | |
| listen 80; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| excalidraw: | |
| container_name: excalidraw | |
| ports: | |
| - "80:80" | |
| restart: on-failure | |
| stdin_open: true | |
| healthcheck: | |
| disable: true | |
| environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author : Tran Thanh Tan | |
| # To install and update paperless with this file, do the following: | |
| # | |
| # - Copy this file as 'docker-compose.yml' and the files 'docker-compose.env' | |
| # and '.env' into a folder. | |
| # - Run 'docker compose pull'. | |
| # - Run 'docker compose run --rm webserver createsuperuser' to create a user. | |
| # - Run 'docker compose up -d'. | |
| # | |
| # For more extensive installation and update instructions, refer to the |
OlderNewer