本帖最後由 角色 於 2018-6-23 18:19 編輯
How to pull the latest docker file of V2ray?- docker pull v2ray/official
複製代碼 After the docker pull, you have to go into the Container Station to create a new docker application of V2Ray.
After the application creation complete, you have to copy the config.json file from one V2Ray server to the new one.
Source:
a5218aaae4aa
Destination
4a31609a6e6c
Format:- docker cp <containerId>:/file/path/within/container /host/path/target
- [code].
- docker copy between containers is not allowed.
- Copy file from the source to the host
- [code]
- docker cp a5218aaae4aa:/etc/v2ray/config.json .
複製代碼 .
Copy file from the host to the destination- docker cp ./config.json 4a31609a6e6c:/etc/v2ray/
複製代碼 |