Skip to content

Commit 94bb272

Browse files
v1.24.2
1 parent 9d76cd3 commit 94bb272

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vigil-server"
3-
version = "1.24.1"
3+
version = "1.24.2"
44
description = "Microservices Status Page. Monitors a distributed infrastructure and sends alerts (Slack, SMS, etc.)."
55
readme = "README.md"
66
license = "MPL-2.0"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,13 @@ You might find it convenient to run Vigil via Docker. You can find the pre-built
121121
First, pull the `valeriansaliou/vigil` image:
122122

123123
```bash
124-
docker pull valeriansaliou/vigil:v1.24.1
124+
docker pull valeriansaliou/vigil:v1.24.2
125125
```
126126

127127
Then, seed it a configuration file and run it (replace `/path/to/your/vigil/config.cfg` with the path to your configuration file):
128128

129129
```bash
130-
docker run -p 8080:8080 -v /path/to/your/vigil/config.cfg:/etc/vigil.cfg valeriansaliou/vigil:v1.24.1
130+
docker run -p 8080:8080 -v /path/to/your/vigil/config.cfg:/etc/vigil.cfg valeriansaliou/vigil:v1.24.2
131131
```
132132

133133
In the configuration file, ensure that:

scripts/release_binaries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function release_for_architecture {
4343
mkdir ./vigil && \
4444
cp -p "target/$2/release/vigil" ./vigil/ && \
4545
cp -r ./config.cfg ./res vigil/ && \
46-
tar -czvf "$final_tar" ./vigil && \
46+
tar --owner=0 --group=0 -czvf "$final_tar" ./vigil && \
4747
rm -r ./vigil/
4848
release_result=$?
4949

0 commit comments

Comments
 (0)