From de381cb378f45f8cce3dbf99d1b72c360dc095b2 Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Mon, 24 Jul 2023 12:27:26 +0200 Subject: [PATCH] docker: Add `$USER` env var to docker-compose This ensures the variable is set and can be used as a default for the node alias. --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b5b5769f..8b55f2be 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,6 +10,7 @@ services: RUST_LOG: debug RAD_PASSPHRASE: seed RUST_BACKTRACE: 1 + USER: ${USER} volumes: - /mnt/radicle/heartwood:/root/ init: true @@ -31,6 +32,7 @@ services: environment: RUST_LOG: debug RUST_BACKTRACE: 1 + USER: ${USER} volumes: - /mnt/radicle/heartwood:/root/ init: true