/** * Verdaccio configuration generator. * * Generates a config file used by the local Verdaccio Docker container. * Paths inside the YAML refer to container-internal locations: the * registry manager bind-mounts the host's `.ory-dev/registry/storage` * directory at `/verdaccio/storage` and the rendered config at * `/verdaccio/conf/config.yaml`. Logs go to stdout so `docker logs` * surfaces them without needing a writable log volume. */ export declare const REGISTRY_PORT = 4873; export declare const REGISTRY_URL = "http://localhost:4873"; export declare const REGISTRY_DIR_NAME = ".ory-dev/registry"; /** Docker image used to run Verdaccio. Pinned to v6 to match prior CLI usage. */ export declare const REGISTRY_IMAGE = "verdaccio/verdaccio:6"; /** Container name for the local registry. Distinct from any user-managed Verdaccio. */ export declare const REGISTRY_CONTAINER = "ory-registry"; /** Container-internal path where the manager mounts the host storage directory. */ export declare const REGISTRY_CONTAINER_STORAGE = "/verdaccio/storage"; /** Container-internal path where the manager mounts the rendered config file. */ export declare const REGISTRY_CONTAINER_CONFIG = "/verdaccio/conf/config.yaml"; export declare function verdaccioConfigYaml(): string; export declare function npmrcContent(): string;