mirror of
https://github.com/mochi-mqtt/server.git
synced 2025-09-26 20:21:12 +08:00

* Begin adding new slog calls * Fixed unit tests * Add leveler example * Add debug log level to Redis example * Change location of server.Close() and add logs to example/hooks * Begin removing references to zerolog * Removed final references to zerolog * Change where server.Close() occurs in main * Change to 1.21 to remove x dependency * Add slog * Update references to 1.21 * Begin change of LogAttrs to standard logging interface * Change the rest of LogAttrs to default * Fix bad log * Update badger.go Changing "data" to "key" or "id" here might be more appropriate. * Update badger.go Changing "data" to "key" or "id" here might be more appropriate. * Update server.go Not checking if err is equal to nil * Update server.go printing information for ID or error is missing. * Change references of err.Error() to err in slog * Remove missed removal of Error() references for logging --------- Co-authored-by: Derek Duncan <dduncan@atlassian.com> Co-authored-by: Derek Duncan <derekduncan@gmail.com> Co-authored-by: JB <28275108+mochi-co@users.noreply.github.com> Co-authored-by: werbenhu <werben@qq.com>
32 lines
336 B
Docker
32 lines
336 B
Docker
FROM golang:1.21.0-alpine3.18 AS builder
|
|
|
|
RUN apk update
|
|
RUN apk add git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
|
|
RUN go build -o /app/mochi ./cmd
|
|
|
|
|
|
FROM alpine
|
|
|
|
WORKDIR /
|
|
COPY --from=builder /app/mochi .
|
|
|
|
# tcp
|
|
EXPOSE 1883
|
|
|
|
# websockets
|
|
EXPOSE 1882
|
|
|
|
# dashboard
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT [ "/mochi" ]
|