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
| web: | |
| image: nginx:latest | |
| ports: | |
| - "8080:80" | |
| volumes: | |
| - ./dockloc/public:/var/www/dockloc/public | |
| - ./vhost.conf:/etc/nginx/conf.d/dockloc.conf | |
| links: | |
| - php | |
| php: |
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
| # Rename this distribution example file to motion.conf | |
| # | |
| # This config file was generated by motion 3.2.12 | |
| ############################################################ | |
| # Daemon | |
| ############################################################ | |
| # Start in daemon (background) mode and release terminal (default: off) |
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
| sudo apt-get install autoconf automake build-essential libtool libjpeg8-dev libzip-dev | |
| mkdir programms | |
| cd programms/ | |
| git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg | |
| cd ffmpeg | |
| # ffmpeg may take a long time to compile(more than hour on my raspberry pi) | |
| ./configure | |
| make | |
| sudo make install | |
| #default motion does not support RTSP streaming, using Mr-Dave's fork |