I seem to have solved my problems, here's the docker file:
version: "3.9" services: espruinohub: image: espruino/espruinohub hostname: espruinohub container_name: espruinohub privileged: true environment: - TZ=Europe/London - NOBLE_HCI_DEVICE_ID=0 network_mode: host volumes: - /home/pi/espruinohub/config.json:/data/config.json:ro restart: unless-stopped node-red: image: nodered/node-red:latest environment: - TZ=Europe/London ports: - "1880:1880" network_mode: host volumes: - node-red-data:/data restart: unless-stopped mosquitto: image: eclipse-mosquitto:2 volumes: #- ./mqtt/config/:/mosquitto/config/ - ./mqtt/log/:/mosquitto/log/ - mqtt-data:/mosquitto/data/ network_mode: host ports: - 1883:1883 - 9001:9001 volumes: node-red-data: mqtt-data:
I need to find the folder where to store the Espruino web pages.
@user153457 started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I seem to have solved my problems, here's the docker file:
I need to find the folder where to store the Espruino web pages.