- Edited
I have deployed a docker instance and I have created a service to run it at boot with the command
@ execute = (execline-cd /home/wastelander/foo-docker docker-compose up)
. However setting and absolute path is not the best practice, because the service is not really "portable" and if I change user of course it won't work. Is there a way to put an environment variable in the execline command? For example can I replace /home/wastelander with /home/$USER or something?