diff --git a/components/sensor/sgp30.rst b/components/sensor/sgp30.rst index 448b8431e..e75346642 100644 --- a/components/sensor/sgp30.rst +++ b/components/sensor/sgp30.rst @@ -6,7 +6,7 @@ SGP30 CO₂ and Volatile Organic Compound Sensor :image: sgp30.jpg The ``sgp30`` sensor platform allows you to use your Sensirion SGP30 multi-pixel gas -(`datasheet `__) sensors or the SVM30 breakout-boards (`product page `__) with ESPHome. +(`datasheet `__) sensors or the SVM30 breakout-boards (`product page `__) with ESPHome. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. figure:: images/eco2-tvoc.png diff --git a/guides/getting_started_command_line.rst b/guides/getting_started_command_line.rst index 8b37fc848..ac84a1ab6 100644 --- a/guides/getting_started_command_line.rst +++ b/guides/getting_started_command_line.rst @@ -21,6 +21,23 @@ AMD64, ARM and ARM64 (AARCH64), and can be downloaded with: docker pull esphome/esphome +If you want to use `docker-compose` instead, here's a sample file: + +.. code-block:: yaml + + version: '3' + services: + esphome: + container_name: esphome + image: esphome/esphome + volumes: + - /path/to/esphome/config:/config + - /etc/localtime:/etc/localtime:ro + restart: always + privileged: true + network_mode: host + + Connecting the ESP Device -------------------------