分类目录归档:工具链

jumpserver-docker


# 测试环境可以使用,生产环境推荐外置数据
git clone --depth=1 https://github.com/jumpserver/Dockerfile.git
cd Dockerfile
cp config_example.conf .env
docker-compose -f docker-compose-network.yml -f docker-compose-redis.yml -f docker-compose-mariadb.yml -f docker-compose-init-db.yml up -d
docker exec -i jms_core bash ...

Read more

github缓存加速


https://www.gitclone.com/



// 方法一(设置git参数)
git config --global url."https://gitclone.com/".insteadOf https://
git clone https://github.com/tendermint/tendermint.git
// 方法二(使用cgit客户端)
cgit clone https://github.com/tendermint/tendermint.git
// 方法三(替换URL)

F:>git clone https://gitclon...

Read more