# learn-jenkins **Repository Path**: tering/learn-jenkins ## Basic Information - **Project Name**: learn-jenkins - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-21 - **Last Updated**: 2022-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### docker 清理无用镜像 ```shell docker images | grep none | awk '{print $3}' | xargs docker rmi ``` ### go build -a 如果不加`-a`,那么在源代码没有发生变化的时候,不回重新编译