1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

Merge branch 'master' into dev

This commit is contained in:
Henrik Hautakoski 2024-04-29 21:12:13 +02:00
commit 79e5777d56
4 changed files with 13 additions and 2 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
/config.yml
/.pc
/.vscode/
/vendor

View file

@ -3,7 +3,7 @@ GO=go
GOLDFLAGS=-v -s -w -X main.VersionString=$(PROGRAM_VERSION)
GOBUILDFLAGS=-v -p $(shell nproc) -ldflags="$(GOLDFLAGS)"
PROGRAM=thalos-server
PROGRAM_VERSION=1.1.0
PROGRAM_VERSION=1.1.1
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
CFGDIR=$(PREFIX)/etc/thalos

10
debian/changelog vendored
View file

@ -1,3 +1,13 @@
thalos (1.1.1) bionic focal jammy; urgency=medium
* Build binaries linked with musl libc for alpine linux.
* Added docker image.
* redis-acl tool: added `--pass-len` flag.
* redis-acl tool: fix correct syntax for cleartext passwords.
* redis-acl tool: allow ping command for server user.
-- Henrik Hautakoski <henrik.hautakoski@gmail.com> Tue, 09 Apr 2024 22:40:20 +0200
thalos (1.1.0) bionic focal jammy; urgency=medium
* Adding `ActionTrace.FirstReceiver` flag, that is `true`

View file

@ -1,6 +1,6 @@
FROM alpine:latest
LABEL maintainer="Henrik Hautakoski <henrik.Hautakoski@gmail.com>"
ARG VERSION=1.1.0
ARG VERSION=1.1.1
WORKDIR /thalos
ADD --chmod=755 https://github.com/eosswedenorg/thalos/releases/download/v$VERSION/thalos-server-${VERSION}-linux-amd64-musl thalos-server
ENTRYPOINT [ "./thalos-server" ]