Today, 01:46 AM
Docker will not use the host's environment variables by default. So specifying $USER within a Docker compose will not translate to your username inside the Docker container.
You will need to either directly specify your path or you need to create a .env or custom environment file where you do define $USER.
https://docs.docker.com/compose/how-tos/...-attribute
You will need to either directly specify your path or you need to create a .env or custom environment file where you do define $USER.
https://docs.docker.com/compose/how-tos/...-attribute