skip to Main Content

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

2

Answers


  1. In docker desktop you can disable docker-compose under the "Experimental Features" section. Most probably you are using the version that is in beta for now. You can check your version with docker-compose --version. And try to switch it back to older version.

    Try to stay away anything that is in beta version or just released.

    May be helpful: Check out

    If none of them helps, try to reinstall docker

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search