1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00

Added documentation to the PROTOCOL configuration

This commit is contained in:
markpeterfejes 2017-07-05 09:47:29 +02:00
parent df87eb3224
commit 1d07e65997
No known key found for this signature in database
GPG Key ID: 6A97D9BAD9763C3B

@ -62,6 +62,16 @@ PORT=5000; docker run -it --rm --name 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
1. Get the latest version of [docker-compose](https://github.com/docker/compose).