Last active
July 1, 2020 08:29
-
-
Save schtobia/7dca34de5ef3ed235fe9659cbb9e3e72 to your computer and use it in GitHub Desktop.
Motioneye docker-compose file
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.7" | |
services: | |
motioneye: | |
image: ccrisan/motioneye:master-armhf | |
init: true | |
ports: | |
- "8081:8081" | |
- "80:8765" | |
environment: | |
- TZ=Europe/Berlin | |
restart: unless-stopped | |
container_name: motioneye | |
volumes: | |
- etc:/etc/motioneye | |
- var_lib:/var/lib/motioneye | |
devices: | |
- /dev/video0:/dev/video0 | |
volumes: | |
var_lib: | |
etc: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment