Hi,
I've tried to create a docker compose file for that, but it's not reachable from a browser.
version: '3.8'
services:
monitoring:
image: debian
command: >
/bin/bash -c "
apt-get update && \
apt-get install -y curl git && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get install -y nodejs && \
apt-get purge -y nodejs.* && \
mkdir /root/PiDash && \
cd /root/PiDash && \
git clone https://github.com/babanomania/PiDash.git . && \
make install port=8080
"
ports:
- "8080:8080"
Do you have any idea why it is not working?
Thanks,
Feriman
Hi,
I've tried to create a docker compose file for that, but it's not reachable from a browser.
Do you have any idea why it is not working?
Thanks,
Feriman