diff --git a/README.md b/README.md index bdefd5c..9129a95 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,7 @@ A collection of delicious docker recipes. - [x] metasploitframework/metasploit-framework :skull: - [x] minio/minio - [x] mongo +- [x] ccrisan/motioneye - [x] neo4j - [x] erichough/nfs-server - [x] luzifer/nginx-sso diff --git a/motioneye-arm/README.md b/motioneye-arm/README.md new file mode 100644 index 0000000..0b32ab2 --- /dev/null +++ b/motioneye-arm/README.md @@ -0,0 +1,7 @@ +motioneye +========= + +[motionEye][1] is a web frontend for the [motion daemon][2], written in Python. + +[1]: https://github.com/ccrisan/motioneye/wiki +[2]: https://motion-project.github.io/ diff --git a/motioneye-arm/docker-compose.yml b/motioneye-arm/docker-compose.yml new file mode 100644 index 0000000..0e7d320 --- /dev/null +++ b/motioneye-arm/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.8" +services: + motioneye: + image: ccrisan/motioneye:master-armhf + ports: + - "8765:8765" + volumes: + - ./data/etc:/etc/motioneye + - ./data/var:/var/lib/motioneye + hostname: motioneye + restart: unless-stopped