initial commit

This commit is contained in:
2025-05-22 19:39:08 +08:00
commit 531bb42d01
103 changed files with 10291 additions and 0 deletions

View File

@ -0,0 +1,30 @@
FROM golang:alpine AS builder
LABEL stage=gobuilder
ENV GOPROXY=https://goproxy.cn,direct
ENV CGO_ENABLED=0
RUN apk update --no-cache && apk add --no-cache tzdata
WORKDIR /build
ADD go.mod .
ADD go.sum .
RUN go mod download
COPY . .
RUN go build -ldflags="-s -w" -o /app/gateway gateway/gateway.go
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /usr/share/zoneinfo/Asia/Shanghai /usr/share/zoneinfo/Asia/Shanghai
ENV TZ=Asia/Shanghai
WORKDIR /app
COPY --from=builder /app/gateway /app/gateway
CMD ["./gateway", "-f", "etc/config.yaml"]

View File

@ -0,0 +1,16 @@
services:
gateway:
image: gateway:v1
container_name: gateway
restart: always
ports:
- 60000:60000
volumes:
- ./etc:/app/etc
networks:
- godemo_network
networks:
godemo_network:
name: godemo_network
external: true

View File

@ -0,0 +1,13 @@
Name: gateway-api
Host: 0.0.0.0
Port: 60000
JwtAuth:
AccessSecret: "your-secure-secret"
AccessExpire: 900 # 可选单位秒15分钟
UserRpc:
Etcd:
Hosts:
- etcd:2379
Key: user.rpc