mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
4862acdc0e
- refactor docker image to use builder multistage pattern - separate storage directories - verdaccio code directories are not user writeable - add generic support for random user uid on environments where the startup user for docker is randomized (e.g. openshift)
14 lines
271 B
YAML
14 lines
271 B
YAML
version: '2.1'
|
|
services:
|
|
verdaccio:
|
|
build: .
|
|
container_name: verdaccio
|
|
environment:
|
|
- VERDACCIO_PORT
|
|
ports:
|
|
- $VERDACCIO_PORT:$VERDACCIO_PORT
|
|
volumes:
|
|
- verdaccio-storage:/verdaccio/storage
|
|
volumes:
|
|
verdaccio:
|
|
driver: local
|