"lib/runtime/vscode:/vscode.git/clone" did not exist on "edda76b4ebdb855ca8a38c1955b0e52b267c9f32"
Unverified Commit 3d499705 authored by Ryan McCormick's avatar Ryan McCormick Committed by GitHub
Browse files

docs: Add example etcd/nats commands to the container banner (#1423)

parent a6731450
......@@ -50,8 +50,14 @@ Try the following to begin interacting with a model:
> dynamo --help
> dynamo run Qwen/Qwen2.5-3B-Instruct
For more complete deployment configurations, check out the examples folder.
To run the examples instances of etcd and nats are needed from the host system.
To run more complete deployment examples, instances of etcd and nats need to be
accessible within the container. This is generally done by connecting to
existing etcd/nats services from the host or other containers. For simple
cases, you can start them in the container as well:
> nats-server -js &
> etcd --listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379 --data-dir /tmp/etcd &
With etcd/nats accessible, run the examples:
> cd examples/hello_world
> dynamo serve hello_world:Frontend
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment