File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,14 @@ Try the following to begin interacting with a model:
50
50
> dynamo --help
51
51
> dynamo run Qwen/Qwen2.5-3B-Instruct
52
52
53
- For more complete deployment configurations, check out the examples folder.
54
- To run the examples instances of etcd and nats are needed from the host system.
53
+ To run more complete deployment examples, instances of etcd and nats need to be
54
+ accessible within the container. This is generally done by connecting to
55
+ existing etcd/nats services from the host or other containers. For simple
56
+ cases, you can start them in the container as well:
57
+ > nats-server -js &
58
+ > etcd --listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379 --data-dir /tmp/etcd &
59
+
60
+ With etcd/nats accessible, run the examples:
55
61
> cd examples/hello_world
56
62
> dynamo serve hello_world:Frontend
57
63
You can’t perform that action at this time.
0 commit comments