You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is the way you've formatted the path (./) isn't recognized correctly by Docker on Windows.
To resolve this issue, you can specify the volume path using the absolute path of the directory you want to mount.
When using PowerShell or CMD in Windows, you can prepend the current directory with ${PWD} which stands for "Print Working Directory". This will translate to the full path of the current directory.
Here’s how you can adjust your Docker command: docker run -it -v ${PWD}:/app --rm -p 7860:7860 -e OPENAI_API_KEY=<YOUR_API_KEY> vrsen/agency-swarm
The text was updated successfully, but these errors were encountered:
The issue is the way you've formatted the path (./) isn't recognized correctly by Docker on Windows.
To resolve this issue, you can specify the volume path using the absolute path of the directory you want to mount.
When using PowerShell or CMD in Windows, you can prepend the current directory with ${PWD} which stands for "Print Working Directory". This will translate to the full path of the current directory.
Here’s how you can adjust your Docker command:
docker run -it -v ${PWD}:/app --rm -p 7860:7860 -e OPENAI_API_KEY=<YOUR_API_KEY> vrsen/agency-swarm
The text was updated successfully, but these errors were encountered: