diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 82f982d..d22e7b3 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build stage using pre-built base image -FROM git.oceanpay.cc/danial/kami-gateway-base:latest AS builder +FROM git.domainpay.top/danial/kami-gateway-base:latest AS builder # Set working directory WORKDIR /build @@ -12,7 +12,7 @@ RUN go mod tidy && \ go build -o main -ldflags="-s -w" main.go # Stage 2: Runtime stage using Alpine Linux -FROM git.oceanpay.cc/danial/alpine-base:latest +FROM git.domainpay.top/danial/alpine-base:latest # Set environment variables ENV TZ=Asia/Shanghai \ diff --git a/deploy/docker-compose-local.yaml b/deploy/docker-compose-local.yaml deleted file mode 100644 index 2f1ff1f..0000000 --- a/deploy/docker-compose-local.yaml +++ /dev/null @@ -1,17 +0,0 @@ -services: - gateway_kami: - build: - context: .. - dockerfile: ./deploy/Dockerfile - container_name: kami_gateway - image: kami_gateway:latest - ports: - - "12309:12309" - networks: - - 1panel-network - labels: - createdBy: Developer - -networks: - 1panel-network: - external: true