Skip to content

etops/sinopia-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sinopia (Docker Image)

Docker Stars Docker Pulls Docker Size License MIT

Sinopia is a private npm repository server.

This repo uses rnbwd/sinopia for better compatability with docker and nginx-proxy.

Recommend Usage

  • To run default container on port 4873

docker run --name sinopia -d -p 4873:4873 rnbwd/sinopia

  • to sync storage / config.yaml

mkdir -p /path/to/storage

mkdir -p /path/to/config.yaml

edit config.yaml

docker run --name sinopia -d -p 4873:4873 -v <local-path-to-storage>:/sinopia/storage -v <local-path-to-config>:/sinopia/config.yaml rnbwd/sinopia

  • The volume will be synced, so you can update the anything linked outside of the container and it will automatically change the files inside the container. Run docker restart sinopia if config.yaml is updated.

Optional Usage

Run nginx-proxy container:

docker run -d -p 80:80 -p 443:443 -v /path/to/certs:/etc/nginx/certs -v /var/run/docker.sock:/tmp/docker.sock:ro rnbwd/nginx

docker run -e VIRTUAL_HOST=site.com \ -v /path/to/storage:/sinopia/storage \ -v /path/to/config.yaml:/sinopia/config.yaml \ --name sinopia -d -P rnbwd/sinopia

Building Custom Containers

  • From github repository
git clone https://github.com/RnbWd/sinopia-docker.git
cd sinopia-docker
docker build -t sinopia .
docker run -d -p 4873:4873 sinopia

Links

About

Sinopia Docker Image

Resources

License

Stars

Watchers

Forks

Packages

No packages published