dynamo/deploy/docker-compose.yml

31 lines
778 B
YAML

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# Bare minimum infrastructure services for Dynamo.
# For observability (metrics, tracing, dashboards), use docker-observability.yml
networks:
server:
driver: bridge
services:
nats-server:
image: nats:2.11.4
command: [ "-js", "--trace", "-m", "8222" ]
ports:
- 4222:4222
- 6222:6222
- 8222:8222 # the endpoints include /varz, /healthz, ...
networks:
- server
etcd-server:
image: bitnamilegacy/etcd:3.6.1
environment:
- ALLOW_NONE_AUTHENTICATION=yes
ports:
- 2379:2379 # this port exposes the /metrics endpoint
- 2380:2380
networks:
- server