mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
23 lines
473 B
YAML
23 lines
473 B
YAML
|
version: '2'
|
||
|
|
||
|
services:
|
||
|
verdaccio:
|
||
|
image: verdaccio/verdaccio:4
|
||
|
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'
|