Hi,
I’m working with a Jetson NX (Ubuntu 18.04) running Docker version 20.10.2 and docker-compose v2.15.1. When attempting to include environment variables in the docker-compose file I’m using a .env file for hardcoded values, and attempting to pull the USER environment variable in:
volumes:
- /home/${USER}/:/home/${USER}/
using:
USER=${USER} docker-compose up --build --force-recreate
This approach works on my Ubuntu Linux laptop, but not on the Jetson NX.
Why might this be?