From a0b4e52da7b0f3eaca921b7df1bb67591fa9889f Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Sat, 23 Oct 2021 22:24:13 +0100 Subject: [PATCH 01/18] test diag with new base image test diag with new base image --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 96dfd3c1..46cf97a1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -56,7 +56,7 @@ services: - RELEASE_BUMPER=foobar diagnostics: - image: nebraltd/hm-diag:d9ab173 + image: nebraltd/hm-diag:889e6f7 environment: - FIRMWARE_VERSION=2021.10.18.1 volumes: From 6c71285ce5fbff1756f3259c819a41c13d0d245f Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Sat, 23 Oct 2021 23:21:25 +0100 Subject: [PATCH 02/18] bump upnp for testing bump upnp for testing --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 46cf97a1..31fe736b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -72,7 +72,7 @@ services: io.balena.features.sysfs: 1 upnp: - image: nebraltd/hm-upnp:5672229 + image: nebraltd/hm-upnp:9a092ca network_mode: host restart: on-failure volumes: From 5b042f2f1fd7d0a8a360c68e332656bccefdc901 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Sun, 24 Oct 2021 03:06:34 +0100 Subject: [PATCH 03/18] fix: add depends on for packet forwarder The packet forwarder actually requires the miner container to be able to accept connections on the hostname helium-miner before it will be able to start the concentrator. This adds a depends_on to not attempt to start the packet forwarder container until the miner container is up --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 31fe736b..00728893 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,6 +26,8 @@ services: packet-forwarder: image: nebraltd/hm-pktfwd:a901153 + depends_on: + - helium-miner restart: always privileged: true volumes: From 06abcb70115961ccf8740420b892bac1f4b8e471 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Wed, 27 Oct 2021 13:35:01 +0100 Subject: [PATCH 04/18] Create docker-compose.yml Bumps UPnP, config, diag and packet forwarder containers so they are now all using the same base image. We need to now test that it's actually smaller so will leave #182 open for now. --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 00728893..64fad01f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '2' services: gateway-config: - image: nebraltd/hm-config:951749c + image: nebraltd/hm-config:e6a4b16 depends_on: - dbus-session - diagnostics @@ -25,7 +25,7 @@ services: stop_signal: SIGINT packet-forwarder: - image: nebraltd/hm-pktfwd:a901153 + image: nebraltd/hm-pktfwd:57f52a5 depends_on: - helium-miner restart: always @@ -58,7 +58,7 @@ services: - RELEASE_BUMPER=foobar diagnostics: - image: nebraltd/hm-diag:889e6f7 + image: nebraltd/hm-diag:68ae2fe environment: - FIRMWARE_VERSION=2021.10.18.1 volumes: @@ -74,7 +74,7 @@ services: io.balena.features.sysfs: 1 upnp: - image: nebraltd/hm-upnp:9a092ca + image: nebraltd/hm-upnp:9c18f02 network_mode: host restart: on-failure volumes: From f1e275ee513b7157c9cda84ec8b0f12dfed1d4e9 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Thu, 28 Oct 2021 00:46:51 +0100 Subject: [PATCH 05/18] Bump to 2021.10.27.0_GA Bump to 2021.10.27.0_GA --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 64fad01f..011b400b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.10.18.1 + - FIRMWARE_VERSION=2021.10.27.0 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:8819d54 + image: nebraltd/hm-miner:f223356 depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:68ae2fe environment: - - FIRMWARE_VERSION=2021.10.18.1 + - FIRMWARE_VERSION=2021.10.27.0 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From a2cd3254079e6fa61c495a6c632f091c578939b4 Mon Sep 17 00:00:00 2001 From: Sebastian Maj Date: Fri, 29 Oct 2021 09:20:21 -0400 Subject: [PATCH 06/18] Added documentation to the readme for quick start (#189) Added documentation to the readme for quick start (#189) --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 370fec6d..72d6a70a 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,33 @@ The `docker-compose.yml` file is pushed to [Balena](https://www.balena.io/) (usi There are currently six different services running within this device, which are all outlined below. +## Quick Start + +This is a guide to help you get started with the repository and get it running on your local device. This guide is focused on pushing the repository onto a Raspberry Pi using Balena. + +**Prerequisites:** +- Local Test Device (Ex: Raspberry Pi) +- Computer for development and pushing to the device +- Git installed [download](https://git-scm.com/downloads) +- Balena CLI (Install located on Balena step in quick start steps below) + +**Quick Start Steps:** + +Step 1: Clone the repository to your local machine using one of the following commands: +HTTP: ```git clone https://github.com/NebraLtd/helium-miner-software.git``` +SSH: ```git clone git@github.com:NebraLtd/helium-miner-software.git``` + +Step 2: Follow the get started guide for Balena to help you install Balena on your local test device and get a fleet setup so you can start pushing code to it. [here](https://www.balena.io/docs/learn/getting-started/raspberrypi3/nodejs/) + +Step 3: Once you've gone through the steps and have Balena setup with your device in your fleet. Open your cli terminal and navigate to the root directory of the cloned repository. (Ex: /usr/name/documents/helium-miner-software) + +Step 4: Once you're at the root directory. You want to push the code by running the following command: +```bash +$ balena push +``` + +Step 5. Once complete check your fleet on the Balena dashboard and all modules should be running on the local test device. + ## Diagnostics Repo: [github.com/NebraLtd/hm-diag](https://github.com/NebraLtd/hm-diag) From 06dcde32e956f9066c75c42faa8b080d0fa454df Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Sat, 30 Oct 2021 03:13:37 +0100 Subject: [PATCH 07/18] Bump to 2021.10.29.0_GA Bump to 2021.10.29.0_GA --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 011b400b..b8b55090 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.10.27.0 + - FIRMWARE_VERSION=2021.10.29.0 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:f223356 + image: nebraltd/hm-miner:c995074 depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:68ae2fe environment: - - FIRMWARE_VERSION=2021.10.27.0 + - FIRMWARE_VERSION=2021.10.29.0 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From 2193dc39024902bf35532f48b0126a828de26610 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Thu, 4 Nov 2021 00:44:04 +0000 Subject: [PATCH 08/18] Bump to 2021.11.02.0_GA Bump to 2021.11.02.0_GA --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b8b55090..2fbc67c0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.10.29.0 + - FIRMWARE_VERSION=2021.11.02.0 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:c995074 + image: nebraltd/hm-miner:20ef80b depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:68ae2fe environment: - - FIRMWARE_VERSION=2021.10.29.0 + - FIRMWARE_VERSION=2021.11.02.0 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From b1a17103a56162ae25c03552243b7f3d25f1c172 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Thu, 4 Nov 2021 03:00:14 +0000 Subject: [PATCH 09/18] rearrange readme rearrange readme --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 72d6a70a..8ad160f7 100644 --- a/README.md +++ b/README.md @@ -6,33 +6,6 @@ The `docker-compose.yml` file is pushed to [Balena](https://www.balena.io/) (usi There are currently six different services running within this device, which are all outlined below. -## Quick Start - -This is a guide to help you get started with the repository and get it running on your local device. This guide is focused on pushing the repository onto a Raspberry Pi using Balena. - -**Prerequisites:** -- Local Test Device (Ex: Raspberry Pi) -- Computer for development and pushing to the device -- Git installed [download](https://git-scm.com/downloads) -- Balena CLI (Install located on Balena step in quick start steps below) - -**Quick Start Steps:** - -Step 1: Clone the repository to your local machine using one of the following commands: -HTTP: ```git clone https://github.com/NebraLtd/helium-miner-software.git``` -SSH: ```git clone git@github.com:NebraLtd/helium-miner-software.git``` - -Step 2: Follow the get started guide for Balena to help you install Balena on your local test device and get a fleet setup so you can start pushing code to it. [here](https://www.balena.io/docs/learn/getting-started/raspberrypi3/nodejs/) - -Step 3: Once you've gone through the steps and have Balena setup with your device in your fleet. Open your cli terminal and navigate to the root directory of the cloned repository. (Ex: /usr/name/documents/helium-miner-software) - -Step 4: Once you're at the root directory. You want to push the code by running the following command: -```bash -$ balena push -``` - -Step 5. Once complete check your fleet on the Balena dashboard and all modules should be running on the local test device. - ## Diagnostics Repo: [github.com/NebraLtd/hm-diag](https://github.com/NebraLtd/hm-diag) @@ -71,6 +44,33 @@ Repo: [github.com/balenablocks/dbus](https://github.com/balenablocks/dbus) This container configures a DBus session bus instance that is used by the gateway config container to communicate with the miner code (note that there is also a separate system bus running on the host OS which is used by gateway config to communicate with bluez for configuring Bluetooth services). This removes the need to have a custom `com.helium.Miner.conf` dbus config file on the host OS as was done previously (and meant we had to run a custom balena device type). +# Quick Start + +This is a guide to help you get started with the repository and get it running on your local device. This guide is focused on pushing the repository onto a Raspberry Pi using Balena. + +**Prerequisites:** +- Local Test Device (Ex: Raspberry Pi) +- Computer for development and pushing to the device +- Git installed [download](https://git-scm.com/downloads) +- Balena CLI (Install located on Balena step in quick start steps below) + +**Quick Start Steps:** + +Step 1: Clone the repository to your local machine using one of the following commands: +HTTP: ```git clone https://github.com/NebraLtd/helium-miner-software.git``` +SSH: ```git clone git@github.com:NebraLtd/helium-miner-software.git``` + +Step 2: Follow the get started guide for Balena to help you install Balena on your local test device and get a fleet setup so you can start pushing code to it. [here](https://www.balena.io/docs/learn/getting-started/raspberrypi3/nodejs/) + +Step 3: Once you've gone through the steps and have Balena setup with your device in your fleet. Open your cli terminal and navigate to the root directory of the cloned repository. (Ex: /usr/name/documents/helium-miner-software) + +Step 4: Once you're at the root directory. You want to push the code by running the following command: +```bash +$ balena push +``` + +Step 5. Once complete check your fleet on the Balena dashboard and all modules should be running on the local test device. + # Device Configuration / Fleet Configuration Notes For some Nebra Hotspots that use spidev1.2 you may need to add a DT overlay in the device or fleet configuration section on balenaCloud to enable spi1. From c3a1f31530253acec71628939b25e884d7225c6d Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Thu, 4 Nov 2021 03:10:49 +0000 Subject: [PATCH 10/18] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ad160f7..6ec9cd35 100644 --- a/README.md +++ b/README.md @@ -51,25 +51,25 @@ This is a guide to help you get started with the repository and get it running o **Prerequisites:** - Local Test Device (Ex: Raspberry Pi) - Computer for development and pushing to the device -- Git installed [download](https://git-scm.com/downloads) -- Balena CLI (Install located on Balena step in quick start steps below) +- Git installed - [download here](https://git-scm.com/downloads) +- [Balena CLI](https://github.com/balena-io/balena-cli) (Install located on Balena step in quick start steps below) -**Quick Start Steps:** +### Quick Start Steps -Step 1: Clone the repository to your local machine using one of the following commands: -HTTP: ```git clone https://github.com/NebraLtd/helium-miner-software.git``` -SSH: ```git clone git@github.com:NebraLtd/helium-miner-software.git``` +**Step 1:** Clone the repository to your local machine using one of the following commands: +- HTTP: `git clone https://github.com/NebraLtd/helium-miner-software.git` +- SSH: `git clone git@github.com:NebraLtd/helium-miner-software.git` -Step 2: Follow the get started guide for Balena to help you install Balena on your local test device and get a fleet setup so you can start pushing code to it. [here](https://www.balena.io/docs/learn/getting-started/raspberrypi3/nodejs/) +**Step 2:** Follow the [getting started guide](https://www.balena.io/docs/learn/getting-started/raspberrypi3/nodejs/) for Balena to help you install Balena on your local test device and get a fleet setup so you can start pushing code to it. -Step 3: Once you've gone through the steps and have Balena setup with your device in your fleet. Open your cli terminal and navigate to the root directory of the cloned repository. (Ex: /usr/name/documents/helium-miner-software) +**Step 3:** Once you've gone through the steps and have Balena setup with your device in your fleet, open your cli terminal and navigate to the root directory of the cloned repository (Ex: /usr/name/documents/helium-miner-software). -Step 4: Once you're at the root directory. You want to push the code by running the following command: +**Step 4:** Once you're at the root directory. You want to push the code by running the following command: ```bash $ balena push ``` -Step 5. Once complete check your fleet on the Balena dashboard and all modules should be running on the local test device. +**Step 5:** Once complete check your fleet on the Balena dashboard and all modules should be running on the local test device. # Device Configuration / Fleet Configuration Notes From 11a539bf5c218b3187dc553e033a20988c0074b7 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Fri, 5 Nov 2021 04:05:27 +0000 Subject: [PATCH 11/18] Bump diag and config Bump diag and config --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2fbc67c0..159e7131 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,12 +3,12 @@ version: '2' services: gateway-config: - image: nebraltd/hm-config:e6a4b16 + image: nebraltd/hm-config:8070d87 depends_on: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.11.02.0 + - FIRMWARE_VERSION=2021.11.02.1 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -58,9 +58,9 @@ services: - RELEASE_BUMPER=foobar diagnostics: - image: nebraltd/hm-diag:68ae2fe + image: nebraltd/hm-diag:d444f93 environment: - - FIRMWARE_VERSION=2021.11.02.0 + - FIRMWARE_VERSION=2021.11.02.1 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From 175e06fe57a698c941db71967522d20a2f76e131 Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Mon, 8 Nov 2021 10:36:08 -0600 Subject: [PATCH 12/18] feat: bump GA to 2021.11.04.2 --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 159e7131..ddb124b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.11.02.1 + - FIRMWARE_VERSION=2021.11.04.2 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:20ef80b + image: nebraltd/hm-miner:e348a6f depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:d444f93 environment: - - FIRMWARE_VERSION=2021.11.02.1 + - FIRMWARE_VERSION=2021.11.04.2 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From ec34b65d02dda4ed70fe4743e5acebe6b6c3a4e1 Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Thu, 11 Nov 2021 09:13:18 -0600 Subject: [PATCH 13/18] release: bump GA to 2021.11.10.0 --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ddb124b2..bce10b51 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.11.04.2 + - FIRMWARE_VERSION=2021.11.10.0 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:e348a6f + image: nebraltd/hm-miner:6ee720d depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:d444f93 environment: - - FIRMWARE_VERSION=2021.11.04.2 + - FIRMWARE_VERSION=2021.11.10.0 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From 4a5b2ebb664cd34bbd23f1b3211b0f0ece5fd83d Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Thu, 11 Nov 2021 20:56:24 -0600 Subject: [PATCH 14/18] release: bump GA to 2021.11.11.0 --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index bce10b51..01bd6eb0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.11.10.0 + - FIRMWARE_VERSION=2021.11.11.0 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -34,7 +34,7 @@ services: - pktfwdr:/var/pktfwd helium-miner: - image: nebraltd/hm-miner:6ee720d + image: nebraltd/hm-miner:4e4d5cc depends_on: - dbus-session - diagnostics @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:d444f93 environment: - - FIRMWARE_VERSION=2021.11.10.0 + - FIRMWARE_VERSION=2021.11.11.0 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From 5973e3e5878a773cb33b212f90a843c76a37f35f Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Fri, 12 Nov 2021 13:57:06 +0000 Subject: [PATCH 15/18] Add tech support to CODEOWNERS Partially fixes #208 --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 455da6dc..a4ffd98b 100755 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,5 +3,6 @@ # @global-owner1 and @global-owner2 will be requested for # review when someone opens a pull request. * @NebraLtd/developers +* @NebraLtd/tech-support # See example for more details: https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners#example-of-a-codeowners-file From 2bcf89e5a070db4bc528a40bdfedd1b1147e88a1 Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Fri, 12 Nov 2021 09:30:33 -0600 Subject: [PATCH 16/18] fix: ECC locking and initFile (#209) Lock ECC usage and ensure initFile always returns. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 01bd6eb0..0875de8b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -58,7 +58,7 @@ services: - RELEASE_BUMPER=foobar diagnostics: - image: nebraltd/hm-diag:d444f93 + image: nebraltd/hm-diag:12420cf environment: - FIRMWARE_VERSION=2021.11.11.0 volumes: From 0a3f8f8ca761a0a7aedcdfa29b0dff24a31c943f Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Fri, 12 Nov 2021 14:23:37 -0600 Subject: [PATCH 17/18] build: bump firmware version --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0875de8b..91225232 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - dbus-session - diagnostics environment: - - FIRMWARE_VERSION=2021.11.11.0 + - FIRMWARE_VERSION=2021.11.11.0-1 - DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket - DBUS_SESSION_BUS_ADDRESS=unix:path=/session/dbus/session_bus_socket privileged: true @@ -60,7 +60,7 @@ services: diagnostics: image: nebraltd/hm-diag:12420cf environment: - - FIRMWARE_VERSION=2021.11.11.0 + - FIRMWARE_VERSION=2021.11.11.0-1 volumes: - pktfwdr:/var/pktfwd - miner-storage:/var/data From 504a3e7697540d7be0671dc434f369c14f9c2ce7 Mon Sep 17 00:00:00 2001 From: Marvin Arnold Date: Sun, 14 Nov 2021 12:03:18 -0600 Subject: [PATCH 18/18] bump(pktfwd): current master branch Including likely unnecessary patch to regions. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0579104b..b2ea2692 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,7 +25,7 @@ services: stop_signal: SIGINT packet-forwarder: - image: nebraltd/hm-pktfwd:1213210 + image: nebraltd/hm-pktfwd:3f7c41e depends_on: - helium-miner restart: always