Last active
August 2, 2020 23:30
-
-
Save esslamben/38e935700aae6ab5c01ff172a099f30e to your computer and use it in GitHub Desktop.
NPM Registry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
verdaccio: | |
image: verdaccio/verdaccio | |
container_name: "verdaccio" | |
networks: | |
- node-network | |
environment: | |
- VERDACCIO_PORT=4873 | |
ports: | |
- "4873:4873" | |
volumes: | |
- "./storage:/verdaccio/storage" | |
- "./conf:/verdaccio/conf" | |
- "./plugins:/verdaccio/plugins" | |
networks: | |
node-network: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment