services: verdaccio: image: verdaccio/verdaccio:6 container_name: dsmmg-verdaccio restart: unless-stopped ports: - "4873:4873" volumes: - verdaccio-storage:/verdaccio/storage - ./verdaccio/config.yaml:/verdaccio/conf/config.yaml:ro environment: VERDACCIO_PROTOCOL: http VERDACCIO_PORT: 4873 healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://localhost:4873/-/ping"] interval: 30s timeout: 5s retries: 3 volumes: verdaccio-storage: name: dsmmg-verdaccio-storage