verdaccio/docker-examples/v6/reverse_proxy/nginx
Juan Picado 82cb0f2bff
config.logs throw an error, logging config not longer accept array or… (#3097)
2022-03-28 20:02:08 +02:00
..
relative_path config.logs throw an error, logging config not longer accept array or… (#3097) 2022-03-28 20:02:08 +02:00
root_path migrate docker-examples (#2682) 2021-11-19 15:39:26 +01:00
README.md migrate docker-examples (#2682) 2021-11-19 15:39:26 +01:00

README.md

Verdaccio and Nginx

Running verdaccio via reverse proxy is a common practice. This configuration provides a quick way to run the application behind nginx.

This folder provides the following examples:

  • root_path: Using reverse proxy with / as a path.
  • relative_path: Using /verdaccio/ as a subdirectory. It includes also SSL examples with reverse proxy.

To run the containers, run the following commands in this folder. The containers should start in detach mode.

 docker-compose up -d

To recreate the nginx image you can force the build.

 docker-compose up --build -d

To force recreate the images.

docker-compose up --build --force-recreate  -d

To stop all containers

docker-compose stop

To display container logs

$> docker-compose logs
Attaching to nginxverdaccio_nginx_1, verdaccio
verdaccio    |  warn --- config file  - /verdaccio/conf/config.yaml
verdaccio    |  warn --- http address - http://0.0.0.0:4873/ - verdaccio/2.1.7
verdaccio    |  http <-- 304, user: undefined, req: 'GET /', bytes: 0/0
verdaccio    |  http <-- 304, user: undefined, req: 'GET /-/static/jquery.min.js', bytes: 0/0
verdaccio    |  http <-- 304, user: undefined, req: 'GET /-/static/main.css', bytes: 0/0
verdaccio    |  http <-- 304, user: undefined, req: 'GET /-/static/main.js', bytes: 0/0
verdaccio    |  http <-- 304, user: undefined, req: 'GET /-/logo', bytes: 0/0
verdaccio    |  http <-- 304, user: undefined, req: 'GET /-/static/fontello.woff?10872183', bytes: 0/0
verdaccio    |  http <-- 200, user: undefined, req: 'GET /-/static/favicon.png', bytes: 0/315

Display Information

To display the containers running

&> docker-compose ps
         Name                       Command               State           Ports
----------------------------------------------------------------------------------------
nginxverdaccio_nginx_1   /usr/sbin/nginx                  Up      0.0.0.0:80->80/tcp
verdaccio                /usr/src/app/bin/verdaccio ...   Up      0.0.0.0:4873->4873/tcp