Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 460 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 460 Bytes

docker_verysync

versync的docker镜像

docker命令启动

docker run -d --restart=unless-stopped --name verysync -v /your_data:/data -p 8886:8886 unwenliu/verysync:latest

docker-compose启动

version: "3"

services:
  versync:
    image: unwenliu/verysync:latest
    ports:
      - "8886:8886"
      - "22330:22330"
    volumes:
      - "/your_data:/data"
      - "/etc/localtime:/etc/localtime:ro"
    restart: unless-stopped