Skip to content

Commit 0851fbc

Browse files
committed
edits to docker compose comments
1 parent d1bb131 commit 0851fbc

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

static/scripts/docker-compose/docker-compose-lightweight.yaml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: nim
22
secrets:
33
nim_admin_password:
44
file: admin_password.txt
5-
# Optional - set admin and user credential from .htpasswd file
5+
# Optional: set admin and user credentials from a .htpasswd file.
66
#nim_credential_file:
77
# file: nim_creds.txt
8-
# Optional - set the external SSL cert, key and ca in PEM format for the nim ingress proxy
8+
# Optional: set external SSL certificate, key, and CA in PEM format for the NIM ingress proxy.
99
#nim_proxy_cert_file:
1010
# file: ./certs/nim_cert.pem
1111
#nim_proxy_cert_key:
@@ -23,7 +23,7 @@ services:
2323
volumes:
2424
- nim-data:/data
2525
- proxy-certs:/usr/local/share/ca-certificates
26-
# Uncomment to set custom service limits
26+
# Uncomment to set custom service limits.
2727
#deploy:
2828
# resources:
2929
# limits:
@@ -38,51 +38,51 @@ services:
3838
stop_grace_period: 30s
3939
secrets:
4040
- nim_admin_password
41-
# Uncomment the line below if using a .htpasswd credential file. The credential file takes priority over the nim_admin_password file
41+
# Uncomment this line if you use a .htpasswd credential file. The credential file takes priority over the nim_admin_password file.
4242
#- nim_credential_file
43-
# Uncomment the lines below if using user provided cert, key and CA for the nim ingress proxy
43+
# Uncomment these lines to use user-provided certificate, key, and CA for the NIM ingress proxy.
4444
#- nim_proxy_cert_file
4545
#- nim_proxy_cert_key
4646
#- nim_proxy_ca_cert
4747
environment:
48-
# set the NIM logging level
48+
# Set the NIM logging level.
4949
NIM_LOG_LEVEL: "INFO"
50-
# set a custom time-to-live in days value for metrics retention
50+
# Set a custom time-to-live value (in days) for metrics retention.
5151
NIM_METRICS_TTL: "1"
52-
# set a custom time-to-live in days value for events retention
52+
# Set a custom time-to-live value (in days) for event retention.
5353
NIM_EVENTS_TTL: "1"
54-
# set a custom time-to-live in days value for security violation retention
54+
# Set a custom time-to-live value (in days) for security violation retention.
5555
NIM_SECURITY_TTL: "1"
56-
# enable maintenance mode to preform backup,restore and troubleshooting
56+
# Enable maintenance mode to perform backup, restore, and troubleshooting.
5757
#NIM_MAINTENANCE: "true"
58-
# set a custom watchdog timeout in seconds.
58+
# Set a custom watchdog timeout (in seconds).
5959
NIM_WATCHDOG_TIMEOUT: "60"
60-
# set the NIM license mode of operation to either connected or disconnected. Default is connected.
60+
# Set the NIM license mode to connected or disconnected. Default is connected.
6161
NIM_LICENSE_MODE_OF_OPERATION: "connected"
62-
# Enable this setting to use proxy
62+
# Enable basic proxy support.
6363
PROXY_ENABLE: false
64-
# Configure this setting to set the host of the proxy server to be used
64+
# Configure the proxy server host.
6565
PROXY_HOST: ""
66-
# Configure this setting to set the protocol of the proxy server to be used - http/https (default - http)
66+
# Configure the proxy server protocol (http or https). Default is http.
6767
PROXY_PROTOCOL: "http"
68-
# Configure this setting to set the port of the proxy server to be used
68+
# Configure the proxy server port.
6969
PROXY_PORT: 3128
70-
# Enable this setting to use basic auth for proxy
70+
# Enable basic authentication for the proxy.
7171
PROXY_AUTH_REQUIRED: false
72-
# Configure this setting to set the user name in basic auth (proxy_auth_required: true)
72+
# Configure proxy username for basic authentication (required when proxy_auth_required is true).
7373
PROXY_AUTH_USERNAME: ""
74-
# Configure this setting to set the password in basic auth (proxy_auth_required: true)
75-
# Recommended to use .env file for the password
74+
# Configure proxy password for basic authentication (required when proxy_auth_required is true).
75+
# We recommend using a .env file for the password.
7676
# PROXY_PASSWORD: ""
77-
# Configure this setting to set the proxy connection verification (is the proxy trusted by the host)
77+
# Configure proxy SSL verification to trust the proxy server.
7878
PROXY_SSL_VERIFY: true
7979
ENABLE_METRICS: false
8080
networks:
8181
external_network:
8282
driver: bridge
8383
volumes:
84-
# By default docker compose will create a named volume
85-
# Refer to https://docs.docker.com/reference/compose-file/volumes/ for additional storage options such as nfs
84+
# By default, Docker Compose creates a named volume.
85+
# For additional storage options such as NFS, see https://docs.docker.com/reference/compose-file/volumes/.
8686
proxy-certs:
8787
driver: local
8888
nim-data:

0 commit comments

Comments
 (0)