0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

Merge pull request #240 from markpeterfejes/master

Added documentation to the PROTOCOL configuration
This commit is contained in:
Juan Picado @jotadeveloper 2017-07-05 09:58:25 +02:00 committed by GitHub
commit 4f59b0d2c6

View file

@ -62,6 +62,16 @@ PORT=5000; docker run -it --rm --name verdaccio \
verdaccio/verdaccio verdaccio/verdaccio
``` ```
## Using HTTPS with Docker
You can configure the protocol verdaccio is going to listen on, similarly to the port configuration.
You have to overwrite the default value("http") of the `PROTOCOL` environment variable to "https", after you specified the certificates in the config.yaml.
```bash
PROTOCOL=https; docker run -it --rm --name verdaccio \
--env PROTOCOL -p 4873:4873
verdaccio/verdaccio
```
## Using docker-compose ## Using docker-compose
1. Get the latest version of [docker-compose](https://github.com/docker/compose). 1. Get the latest version of [docker-compose](https://github.com/docker/compose).