update instructions to say how to start the app after docker install
I did the docker install, worked great. But how do I start the app and use it? Maybe I'm missing something... I recommend adding that info to the instructions.
I have a request in to get a wiki going, I'll make sure to contribute a walkthrough for Docker in there. It was a very intuitive process, so I think the how-to will be easy to follow.
The Dockerfile exposes port 3000 and the docker run command binds it to your localhost on port 3000.
So the app should be accesible at: localhost:3000.
Thanks. With ChatGPT's help I figured out the magic command:
docker run agentgpt
Good! Also check the Getting Started section if you didnt.
Yes, that's where I started. That's why I opened this ticket. That one extra command should be added to the docker start section.
On Mon, Apr 17, 2023 at 10:13 AM 3x!1 @.***> wrote:
Good! Also check the Getting Started https://github.com/reworkd/AgentGPT#-getting-started section if you didnt.
— Reply to this email directly, view it on GitHub https://github.com/reworkd/AgentGPT/issues/189#issuecomment-1511767779, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABDDXTOSSUZLOO4AE5CI5BTXBV24DANCNFSM6AAAAAAXAOHUCY . You are receiving this because you authored the thread.Message ID: @.***>
Task:
- [ ] Add docker command to documentation "docker run agentgpt"
We've since updated our setup scripts from this time and actually removed guidance for docker alone. This is because running through docker compose will deal with managing all of the sub-services which is especially important now as we integrate with things like a VectorDB.
Thanks for the help here folks!