mirror of
https://gitee.com/ledc/IYUUAutoReseed
synced 2025-04-26 12:23:24 +00:00
6 lines
301 B
Bash
6 lines
301 B
Bash
#!/bin/sh
|
|
curl -o ./IYUUAutoReseed.zip http://api.iyuu.cn/IYUUAutoReseed.zip
|
|
unzip -o ./IYUUAutoReseed.zip -d /root
|
|
rm ./IYUUAutoReseed.zip
|
|
docker build -t iyuu:latest .
|
|
docker run -it -v /root/IYUUAutoReseed:/var/www -p 8510:9000 --network bridge --name IYUUAutoReseed --restart always -d iyuu:latest |