Skip to content

Commit

Permalink
docs(release): update doc version from 1.8.1 to 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Jan 14, 2025
1 parent 44a0c5b commit 2515771
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ sablier --help
# or

docker run sablierapp/sablier[:version] --help
# ex: docker run sablierapp/sablier:1.8.1 --help
# ex: docker run sablierapp/sablier:1.8.2 --help
```

All arguments can be used in the form of the config file such as
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
image: acouvreur/whoami:v1.10.2

sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
command:
- start
- --provider.name=docker
Expand Down Expand Up @@ -113,7 +113,7 @@ services:
image: acouvreur/whoami:v1.10.2

sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
command:
- start
- --provider.name=docker
Expand Down Expand Up @@ -145,7 +145,7 @@ services:
- sablier.group=demo
sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
```
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/code-server-traefik-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
additionalArguments:
- "--experimental.plugins.sablier.moduleName=github.com/sablierapp/sablier"
- "--experimental.plugins.sablier.version=v1.8.1"
- "--experimental.plugins.sablier.version=v1.8.2"
providers:
kubernetesIngress:
Expand Down Expand Up @@ -142,7 +142,7 @@
serviceAccountName: sablier
containers:
- name: sablier
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
args:
- "start"
- "--provider.name=kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion docs/health.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You can use the command `sablier health` to check for healthiness.
```yml
services:
sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
healthcheck:
test: ["sablier", "health"]
interval: 1m30s
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 sablierapp/sablier:1.8.1
-v $PWD/sablier.yml:/etc/sablier/sablier.yml sablierapp/sablier:1.8.2
```

## Use the binary distribution
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/traefik.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ experimental:

```bash
--experimental.plugins.sablier.modulename=github.com/sablierapp/sablier
--experimental.plugins.sablier.version=v1.8.1
--experimental.plugins.sablier.version=v1.8.2
```

<!-- tabs:end -->
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PROVIDER_NAME=docker
```yaml
services:
sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
command:
- start
- --provider.name=docker
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/docker_swarm.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ PROVIDER_NAME=docker_swarm # or swarm
```yaml
services:
sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
command:
- start
- --provider.name=docker_swarm # or swarm
Expand Down
2 changes: 1 addition & 1 deletion docs/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ By default, the docker image looks for themes located inside the `/etc/sablier/t
```yaml
services:
sablier:
image: sablierapp/sablier:1.8.1
image: sablierapp/sablier:1.8.2
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- '/path/to/my/themes:/etc/sablier/themes'
Expand Down
4 changes: 2 additions & 2 deletions plugins/caddy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Here I'll show you two options with Docker.
### By using the provided Dockerfile

```bash
docker build https://github.com/sablierapp/sablier.git#v1.8.1:plugins/caddy -t caddy:with-sablier
docker build https://github.com/sablierapp/sablier.git#v1.8.2:plugins/caddy -t caddy:with-sablier
```

**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.8.1`)
**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.8.2`)

### By updating your Caddy Dockerfile

Expand Down
2 changes: 1 addition & 1 deletion plugins/traefik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
- --providers.docker=true
- --providers.file.filename=/etc/traefik/dynamic-config.yml
- --experimental.plugins.sablier.moduleName=github.com/sablierapp/sablier/plugins/traefik
- --experimental.plugins.sablier.version=v1.8.1
- --experimental.plugins.sablier.version=v1.8.2
ports:
- "8080:80"
volumes:
Expand Down

0 comments on commit 2515771

Please sign in to comment.