initial checkin

This commit is contained in:
Radar231 2021-07-23 18:57:39 -04:00
commit a2ea5774ad
1 changed files with 23 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
---
version: "3.8"
services:
rpi-monitor:
image: michaelmiklis/rpi-monitor:latest
container_name: rpi-monitor
environment:
- TZ=America/Toronto
devices:
- /dev/vchiq
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/vc:/opt/vc
- /boot:/boot
- /sys:/dockerhost/sys:ro
- /etc:/dockerhost/etc:ro
- /proc:/dockerhost/proc:ro
- /usr/lib:/dockerhost/usr/lib:ro
ports:
- 8888:8888
restart: always
# EOF