docs(release): update doc version from 1.7.0-beta.4 to 1.7.0-beta.5 [skip ci]

This commit is contained in:
semantic-release-bot
2024-03-09 21:52:05 +00:00
parent 8203f35179
commit 2cd2e4dd2f
12 changed files with 20 additions and 20 deletions

View File

@@ -5,7 +5,7 @@ services:
image: traefik:2.11.0
command:
- --experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier
- --experimental.plugins.sablier.version=v1.7.0-beta.4
- --experimental.plugins.sablier.version=v1.7.0-beta.5
- --entryPoints.http.address=:80
- --providers.docker=true
- --providers.file.filename=/etc/traefik/dynamic-config.yml
@@ -16,7 +16,7 @@ services:
- './dynamic-config.yml:/etc/traefik/dynamic-config.yml'
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
labels:

View File

@@ -87,7 +87,7 @@ sablier --help
# or
docker run acouvreur/sablier[:version] --help
# ex: docker run acouvreur/sablier:1.7.0-beta.4 --help
# ex: docker run acouvreur/sablier:1.7.0-beta.5 --help
```
All arguments can be used in the form of the config file such as

View File

@@ -78,7 +78,7 @@ services:
image: containous/whoami:v1.5.0
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
command:
- start
- --provider.name=docker
@@ -113,7 +113,7 @@ services:
image: containous/whoami:v1.5.0
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
command:
- start
- --provider.name=docker

View File

@@ -59,7 +59,7 @@
additionalArguments:
- "--experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier"
- "--experimental.plugins.sablier.version=v1.7.0-beta.4"
- "--experimental.plugins.sablier.version=v1.7.0-beta.5"
providers:
kubernetesIngress:
@@ -143,7 +143,7 @@
serviceAccount: sablier
containers:
- name: sablier
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
args:
- "start"
- "--provider.name=kubernetes"

View File

@@ -16,7 +16,7 @@ You can use the command `sablier health` to check for healthiness.
```yml
services:
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
healthcheck:
test: ["sablier", "health"]
interval: 1m30s

View File

@@ -18,7 +18,7 @@ Choose one of the Docker images and run it with one sample configuration file:
```bash
docker run -d -p 10000:10000 \
-v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.7.0-beta.4
-v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.7.0-beta.5
```
## Use the binary distribution

View File

@@ -98,14 +98,14 @@ experimental:
plugins:
sablier:
moduleName: "github.com/acouvreur/sablier"
version: "v1.7.0-beta.4"
version: "v1.7.0-beta.5"
```
#### **CLI**
```bash
--experimental.plugins.sablier.modulename=github.com/acouvreur/sablier
--experimental.plugins.sablier.version=v1.7.0-beta.4
--experimental.plugins.sablier.version=v1.7.0-beta.5
```
<!-- tabs:end -->

View File

@@ -34,7 +34,7 @@ PROVIDER_NAME=docker
```yaml
services:
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
command:
- start
- --provider.name=docker

View File

@@ -35,7 +35,7 @@ PROVIDER_NAME=docker_swarm
```yaml
services:
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
command:
- start
- --provider.name=docker_swarm

View File

@@ -25,7 +25,7 @@ By default, the docker image looks for themes located inside the `/etc/sablier/t
```yaml
services:
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- '/path/to/my/themes:/etc/sablier/themes'

View File

@@ -16,12 +16,12 @@ Here I'll show you two options with Docker.
### By using the provided Dockerfile
```
docker build https://github.com/acouvreur/sablier.git#v1.7.0-beta.4:plugins/caddy
docker build https://github.com/acouvreur/sablier.git#v1.7.0-beta.5:plugins/caddy
--build-arg=CADDY_VERSION=2.6.4
-t caddy:2.6.4-with-sablier
```
**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.7.0-beta.4`)
**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.7.0-beta.5`)
### By updating your Caddy Dockerfile
@@ -29,7 +29,7 @@ docker build https://github.com/acouvreur/sablier.git#v1.7.0-beta.4:plugins/cadd
ARG CADDY_VERSION=2.6.4
FROM caddy:${CADDY_VERSION}-builder AS builder
ADD https://github.com/acouvreur/sablier.git#v1.7.0-beta.4 /sablier
ADD https://github.com/acouvreur/sablier.git#v1.7.0-beta.5 /sablier
RUN xcaddy build \
--with github.com/acouvreur/sablier/plugins/caddy=/sablier/plugins/caddy

View File

@@ -17,7 +17,7 @@ experimental:
plugins:
sablier:
moduleName: "github.com/acouvreur/sablier"
version: "v1.7.0-beta.4"
version: "v1.7.0-beta.5"
```
2. Configure the plugin using the Dynamic Configuration. Example:
@@ -72,7 +72,7 @@ services:
- --providers.docker=true
- --providers.file.filename=/etc/traefik/dynamic-config.yml
- --experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier/plugins/traefik
- --experimental.plugins.sablier.version=v1.7.0-beta.4
- --experimental.plugins.sablier.version=v1.7.0-beta.5
ports:
- "8080:80"
volumes:
@@ -80,7 +80,7 @@ services:
- './dynamic-config.yml:/etc/traefik/dynamic-config.yml'
sablier:
image: acouvreur/sablier:1.7.0-beta.4
image: acouvreur/sablier:1.7.0-beta.5
command:
- start
- --provider.name=docker