What's Changed
- fix: allow docker listen address to be configured (6.x) by @markormesher in #5503
VERDACCIO_ADDRESS Environment Variable for Docker
You can now set the VERDACCIO_ADDRESS environment variable to control Verdaccio’s network bind address.
- Choose IPv4 (
0.0.0.0), IPv6 ([::]), or a specific interface. - Improves compatibility for dual-stack and custom environments.
Example:
docker run -e VERDACCIO_ADDRESS=0.0.0.0 ...
docker run -e VERDACCIO_ADDRESS='[::]' ...More info at : https://verdaccio.org/docs/env/
Full Changelog: v6.2.3...v6.2.4