mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
23 lines
360 B
YAML
23 lines
360 B
YAML
version: '2'
|
|
|
|
services:
|
|
verdaccio:
|
|
image: verdaccio/verdaccio:nightly-master
|
|
container_name: verdaccio
|
|
ports:
|
|
- '4873:4873'
|
|
volumes:
|
|
- verdaccio:/verdaccio
|
|
|
|
apacheproxy:
|
|
build: apache_proxy/
|
|
links:
|
|
- verdaccio
|
|
ports:
|
|
- '80:80'
|
|
volumes_from:
|
|
- verdaccio
|
|
|
|
volumes:
|
|
verdaccio:
|
|
driver: local
|