We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e94d14 commit 46da487Copy full SHA for 46da487
Dockerfile
@@ -18,4 +18,5 @@ FROM debian:stable-slim
18
19
COPY --from=builder /build/moneyd /
20
21
+EXPOSE 8080
22
ENTRYPOINT [ "./moneyd"]
cmd/moneyd/moneyd.go
@@ -89,7 +89,7 @@ func (cmd *moneydCmd) Run() error {
89
mux.Handle("/", ui.SvelteKitHandler("/"))
90
91
err = http.ListenAndServe(
92
- "localhost:8080",
+ ":8080",
93
h2c.NewHandler(handleCORS(mux), &http2.Server{}),
94
)
95
0 commit comments