Skip to content

Instantly share code, notes, and snippets.

@revolunet
Last active December 1, 2023 11:28
Show Gist options
  • Save revolunet/232a352afd68f3e33a2573d8892e166e to your computer and use it in GitHub Desktop.
Save revolunet/232a352afd68f3e33a2573d8892e166e to your computer and use it in GitHub Desktop.
Verdaccio tips πŸ‘‰ https://verdaccio.org

run with docker

create ~/verdaccio/conf/config.yaml from example then:

V_PATH=~/verdaccio; docker run -it --rm --name verdaccio \
  -p 4873:4873 \
  -v $V_PATH/conf:/verdaccio/conf \
  -v $V_PATH/storage:/verdaccio/storage \
  -v $V_PATH/plugins:/verdaccio/plugins \
  verdaccio/verdaccio

Use it :

yarn add kontinuous --registry http://127.0.0.1:4873
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment