richardyc / Chrome-GPT

An AutoGPT agent that controls Chrome on your desktop
GNU General Public License v3.0
1.66k stars 208 forks source link

Fix: Touch ENV File in foreground #38

Closed BaseInfinity closed 11 months ago

BaseInfinity commented 11 months ago

The docker command is sourcing the ENV file in the background before running docker-compose. This gets the job done but can have weird side effects. I think the original author meant to use && versus &, there's a big difference (one runs the process in the background and the other runs it in the foreground first, then the sequential command)

I also fixed a small formatting issue