Live map of Monterey-Salinas Transit bus positions, updated in real time via the GTFS-RT feed.
git clone https://github.com/TheHTMLProject/MST-RealTime-Bus-Tracker.git
cd MST-RealTime-Bus-Tracker
docker build -t mst-bus-tracker .
docker run -d --restart unless-stopped --name mst-bus-tracker -e PORT=1234 -p 1234:1234 mst-bus-trackerReplace 1234 in both -e PORT= and -p with your desired port.
docker logs -f mst-bus-tracker # stream logs
docker stop mst-bus-tracker # stop
docker start mst-bus-tracker # start again
docker rm -f mst-bus-tracker # removenpm install
npm start # http://localhost:1234Override the port with PORT=8080 npm start.