17 lines
771 B
Plaintext
17 lines
771 B
Plaintext
# docker compose overrides for the @logger/collector service.
|
|
# Copy to .env (which is gitignored) and edit. Every key has a safe default in
|
|
# docker-compose.yml, so an empty .env is fine.
|
|
|
|
# Published @logger/collector version to install from Verdaccio at build time.
|
|
# Must match a version actually on the registry (./scripts/publish.sh <version>).
|
|
COLLECTOR_VERSION=0.2.2
|
|
|
|
# Verdaccio URL reachable from inside the BUILD container.
|
|
# - Docker Desktop (mac/win): host.docker.internal resolves to the host.
|
|
# - Linux: build with `--add-host=host.docker.internal:host-gateway`, or point
|
|
# this at the host's LAN IP, e.g. http://192.168.0.15:4873
|
|
REGISTRY=http://host.docker.internal:4873
|
|
|
|
# Host port to publish the collector's :4319 on.
|
|
COLLECTOR_HOST_PORT=4319
|