From 13680934bc0ff271a5c1e426e406ad0e24022bb4 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Mon, 2 Dec 2024 10:06:09 +0100 Subject: [PATCH] remove version and change simple examples to new format addresses https://github.com/owntracks/talk/issues/201 --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7fd8883..1378af0 100644 --- a/README.md +++ b/README.md @@ -135,8 +135,6 @@ variables see An example might look like: ```yaml -version: '3' - services: otrecorder: @@ -147,9 +145,9 @@ services: - store:/store restart: unless-stopped environment: - - OTR_HOST = "mqtt_broker" - - OTR_USER = "user" - - OTR_PASS = "pass" + OTR_HOST: "mqtt_broker" + OTR_USER: "user" + OTR_PASS: "pass" volumes: store: @@ -161,8 +159,6 @@ If you need to set up an MQTT broker, you can easily use, say, Mosquitto. There containers available on docker hub. To use `eclipse-mosquitto` add something like [the following](docker-compose-mqtt.yml) to your `docker-compose.yml` file. ```yaml -version: '3' - services: otrecorder: