├── COPYING ├── LICENSE ├── README.md └── alpine ├── .dockerignore ├── .npmignore ├── Dockerfile ├── config ├── conf.sample.json ├── motion.conf.sample.json └── super.sample.json ├── docker-compose.microservices.yml ├── docker-compose.yml ├── docker-entrypoint.sh ├── pm2Shinobi.yml └── start-image.sh /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/README.md -------------------------------------------------------------------------------- /alpine/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/.dockerignore -------------------------------------------------------------------------------- /alpine/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | conf.json 3 | -------------------------------------------------------------------------------- /alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/Dockerfile -------------------------------------------------------------------------------- /alpine/config/conf.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/config/conf.sample.json -------------------------------------------------------------------------------- /alpine/config/motion.conf.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/config/motion.conf.sample.json -------------------------------------------------------------------------------- /alpine/config/super.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/config/super.sample.json -------------------------------------------------------------------------------- /alpine/docker-compose.microservices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/docker-compose.microservices.yml -------------------------------------------------------------------------------- /alpine/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/docker-compose.yml -------------------------------------------------------------------------------- /alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /alpine/pm2Shinobi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/pm2Shinobi.yml -------------------------------------------------------------------------------- /alpine/start-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeiscool/docker-shinobi/HEAD/alpine/start-image.sh --------------------------------------------------------------------------------