Revision 0b66abba1845b5d7b6f847944561580ce42f542b authored by Galen Kistler on 19 October 2022, 13:15:32 UTC, committed by GitHub on 19 October 2022, 13:15:32 UTC
1 parent 05709ce
Raw File
docker-compose.yaml
version: '2'

services:
  verdaccio:
    image: verdaccio/verdaccio:5
    container_name: verdaccio
    ports:
      - "4873:4873"
    volumes:
      - verdaccio:/verdaccio

volumes:
  verdaccio:
    driver: local
back to top