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.
This commit is contained in:
parent
f639192dc6
commit
de381cb378
|
|
@ -10,6 +10,7 @@ services:
|
||||||
RUST_LOG: debug
|
RUST_LOG: debug
|
||||||
RAD_PASSPHRASE: seed
|
RAD_PASSPHRASE: seed
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
USER: ${USER}
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/radicle/heartwood:/root/
|
- /mnt/radicle/heartwood:/root/
|
||||||
init: true
|
init: true
|
||||||
|
|
@ -31,6 +32,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
RUST_LOG: debug
|
RUST_LOG: debug
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
USER: ${USER}
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/radicle/heartwood:/root/
|
- /mnt/radicle/heartwood:/root/
|
||||||
init: true
|
init: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue