https://github.com/Motion-Project/motionplus
3.8K
motionplus
This container has the releases of Motion Projects application Motion. See: https://github.com/Motion-Project/motionplus
The source Dockerfile to build this package is available here: https://git.crc.id.au/netwiz/motionplus
Docker run
docker run -d --name=motionplus \
-p 8080:8080 \
-e TZ="Australia/Melbourne" \
-v /etc/localtime:/etc/localtime:ro \
-v motionplus-config:/usr/local/etc/motionplus \
--restart=always \
crcinau/motionplus:latest
Via docker-compose.yml
version: "2.4"
services:
motion:
image: crcinau/motionplus:latest
container_name: motionplus
networks:
- motion
ports:
- "8080:8080"
restart: "always"
ulimits:
nofile:
soft: 1024
hard: 1024
volumes:
- /etc/localtime:/etc/localtime:ro
- motionplus-config:/usr/local/etc/motionplus
How to Update
# docker stop motionplus
# docker rm motionplus
# docker pull crcinau/motionplus:latest
or to update with a docker-compose.yml via Docker Compose V2:
# docker compose pull
# docker compose up -d
Things you may need to change
name = a label for the container, should be motion or motion-project (but can be anything)
Add another volume mapped to /var/lib/motionplus/ to save videos / pictures.
Configuration
Jump into /var/lib/docker/volumes/motionplus-config/_data (or similar) and edit your configuration as required.
Link to official documentation: https://motion-project.github.io/motion_config.html#configfiles
Content type
Image
Digest
sha256:984a140eb…
Size
49.6 MB
Last updated
over 2 years ago
docker pull crcinau/motionplus