1 Commits
Author SHA1 Message Date
曾志威 49f4a9d477 init
continuous-integration/drone Build is passing
2026-02-12 23:49:29 +08:00
6 changed files with 6 additions and 79 deletions
+2 -9
View File
@@ -1,17 +1,10 @@
kind: pipeline
name: default
clone:
depth: 1
steps:
# docker 打包
- name: docker
image: plugins/docker
environment:
HTTP_PROXY: socks5://192.168.9.1:7991
HTTPS_PROXY: socks5://192.168.9.1:7991
NO_PROXY: localhost,127.0.0.1,192.168.0.0/16,192.168.9.0/24,192.168.9.5,git.freeicu.top
settings:
context: ./
dockerfile: ./Dockerfile
@@ -20,6 +13,6 @@ steps:
password:
from_secret: docker_password
registry: https://registry.cn-hangzhou.aliyuncs.com
repo: registry.cn-hangzhou.aliyuncs.com/loghub/wms-system-service
repo: registry.cn-hangzhou.aliyuncs.com/loghub/redis
tags:
- gradle9
- 8
-1
View File
@@ -1 +0,0 @@
.idea/
+4 -5
View File
@@ -1,6 +1,5 @@
FROM gradle:9-alpine
FROM redis:8.6-rc1-alpine3.23
ENV GRADLE_USER_HOME=/opt/gradle-user-home
COPY --chown=gradle:gradle gradle.properties init.gradle ${GRADLE_USER_HOME}/
COPY --chown=gradle:gradle config.json /home/gradle/.docker/config.json
RUN set -eux; \
apk update; \
apk upgrade ;
-31
View File
@@ -1,31 +0,0 @@
{
"auths": {
"qa-wms-acr-registry.cn-shanghai.cr.aliyuncs.com": {
"auth": "c2hhbnl1bi5ndUBTSElOVEFDQ1FBUzAxOnNmakxqemZmRThEMCNWZE4="
},
"registry-vpc.cn-hangzhou.aliyuncs.com": {
"auth": "c3d1QGl0dHguY29tLmNuOml0dHgyMDE4"
},
"registry.cn-hangzhou.aliyuncs.com": {
"auth": "c3d1QGl0dHguY29tLmNuOml0dHgyMDE4"
},
"registry.cn-shanghai.aliyuncs.com": {
"auth": "Zy5zaGFueXVuQGdtYWlsLmNvbTpBYTExMTIzNA=="
},
"sh2-cnepb-acr-pd-epp-registry.cn-shanghai.cr.aliyuncs.com": {
"auth": "U2h1aHVpLlBFTkctQURNQDEwNjU1NTY0ODc1NDYzNDI6eWRCQ2QyWVdxVWhUdExqMSUzb0RzRWxQQDJ3UmdI"
},
"ttx-registry-vpc.cn-hangzhou.cr.aliyuncs.com": {
"auth": "Y2J0X2plbmtpbnNfY3JAMTU0MzYwMDc2MDE3NjU0MDpzYmhXUXJWSFBWUU11SyEz"
},
"ttx-registry.cn-hangzhou.cr.aliyuncs.com": {
"auth": "c3lndUAxNTQzNjAwNzYwMTc2NTQwOlR0eEAyMDI1"
},
"wms-acr-registry.cn-shanghai.cr.aliyuncs.com": {
"auth": "c2hhbnl1bi5ndUBTSElOVEFDQ1BSRDAxOkFhMTIzNDU2"
}
},
"HttpHeaders": {
"User-Agent": "Docker-Client/19.03.1 (linux)"
}
}
-5
View File
@@ -1,5 +0,0 @@
org.gradle.daemon=false
org.gradle.configureondemand=false
org.gradle.parallel=true
org.gradle.vfs.watch=false
org.gradle.caching=true
-28
View File
@@ -1,28 +0,0 @@
buildscript {
repositories {
mavenLocal()
maven { url = 'https://nexus.freeicu.top/repository/maven-public/' }
}
}
allprojects {
buildscript {
repositories {
mavenLocal()
maven { url = 'https://nexus.freeicu.top/repository/maven-public/' }
}
}
repositories {
mavenLocal()
maven { url = 'https://nexus.freeicu.top/repository/maven-public/' }
}
}
settingsEvaluated { settings ->
settings.pluginManagement {
repositories {
mavenLocal()
maven { url = 'https://nexus.freeicu.top/repository/maven-public/' }
}
}
}