mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
aea3b9ddaf
* add docker examples to use plugins at docker * Update Dockerfile * chore: add v6 examples
21 lines
472 B
YAML
21 lines
472 B
YAML
services:
|
|
verdaccio:
|
|
image: verdaccio/verdaccio:nightly-master
|
|
container_name: verdaccio-https
|
|
ports:
|
|
- '4873:4873'
|
|
volumes:
|
|
- './storage:/verdaccio/storage'
|
|
- './conf:/verdaccio/conf'
|
|
https-portal:
|
|
image: steveltn/https-portal:1
|
|
ports:
|
|
- '80:80'
|
|
- '443:443'
|
|
links:
|
|
- verdaccio:verdaccio
|
|
environment:
|
|
DOMAINS: 'example.com -> http://verdaccio:4873'
|
|
STAGE: local
|
|
FORCE_RENEW: 'true'
|