Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't start service with Docker Version 4.11.0 (83626)

Could anyone help me, I have a problem with Docker's new version that I just updated,

and here is the error message after I run command to start the service,

Note: I use laradock with the Docker

WARN[0000] The "lXaL3lj6raFic6rFqr2" variable is not set. Defaulting to a blank string. 
Invalid template: "admin:$2y$10$lXaL3lj6raFic6rFqr2.lOBoCudAIhB6zyoqObNg290UFppiUzTTi"
gms-admin@kosakayuudais-MacBook-Pro laradock % 

enter image description here Please help me I appreciate

like image 561
devit chea Avatar asked Nov 16 '25 03:11

devit chea


1 Answers

That's happen on TRAEFIK_DASHBOARD_USER at .env file which is the value contains $ character. And docker recognized it as variable, that's why we found The "lXaL3lj6raFic6rFqr2" variable is not set error message.

You could pull the latest update from Laradock which add quotation for TRAEFIK_DASHBOARD_USER variable on .env.example file or just manually add single quote on TRAEFIK_DASHBOARD_USER variable.

like image 55
aksal Avatar answered Nov 17 '25 19:11

aksal