From 14c7e2db8f54671e6c481c1b5332e0ec36857c31 Mon Sep 17 00:00:00 2001 From: Henry Dollman Date: Mon, 22 Jul 2024 16:52:11 -0400 Subject: [PATCH] 0.0.1-alpha.6 --- agent/main.go | 2 +- hub/dockerfile | 2 +- hub/main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agent/main.go b/agent/main.go index fd52c9c..0a65885 100644 --- a/agent/main.go +++ b/agent/main.go @@ -23,7 +23,7 @@ import ( psutilNet "github.com/shirou/gopsutil/v4/net" ) -var Version = "0.0.1-alpha.5" +var Version = "0.0.1-alpha.6" var containerCpuMap = make(map[string][2]uint64) var containerCpuMutex = &sync.Mutex{} diff --git a/hub/dockerfile b/hub/dockerfile index 1127e80..21ac584 100644 --- a/hub/dockerfile +++ b/hub/dockerfile @@ -31,4 +31,4 @@ COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ EXPOSE 8090 ENTRYPOINT [ "/beszel" ] -CMD ["serve", "--http=localhost:8090"] \ No newline at end of file +CMD ["serve", "--http=0.0.0.0:8090"] \ No newline at end of file diff --git a/hub/main.go b/hub/main.go index 362eea1..5f41edb 100644 --- a/hub/main.go +++ b/hub/main.go @@ -29,7 +29,7 @@ import ( "golang.org/x/crypto/ssh" ) -var Version = "0.0.1-alpha.5" +var Version = "0.0.1-alpha.6" var app *pocketbase.PocketBase var serverConnections = make(map[string]Server)