From bb87e0dd9bef9dc5c5f4ba55db1476860e3cfa82 Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Sun, 10 Nov 2024 10:52:36 -0500 Subject: [PATCH] docs: set version to 1.8.1 --- docs/configuration.md | 2 +- docs/getting-started.md | 4 ++-- docs/guides/code-server-traefik-kubernetes.md | 4 ++-- docs/health.md | 2 +- docs/installation.md | 2 +- docs/plugins/traefik.md | 2 +- docs/providers/docker.md | 2 +- docs/providers/docker_swarm.md | 2 +- docs/themes.md | 2 +- plugins/traefik/README.md | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 1a6a2780..3ccbfaed 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -87,7 +87,7 @@ sablier --help # or docker run sablierapp/sablier[:version] --help -# ex: docker run sablierapp/sablier:1.8.1-beta.22 --help +# ex: docker run sablierapp/sablier:1.8.1 --help ``` All arguments can be used in the form of the config file such as diff --git a/docs/getting-started.md b/docs/getting-started.md index a8080dcd..c388c2f3 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -78,7 +78,7 @@ services: image: acouvreur/whoami:v1.10.2 sablier: - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 command: - start - --provider.name=docker @@ -113,7 +113,7 @@ services: image: acouvreur/whoami:v1.10.2 sablier: - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 command: - start - --provider.name=docker diff --git a/docs/guides/code-server-traefik-kubernetes.md b/docs/guides/code-server-traefik-kubernetes.md index 2c3face2..24ac65d5 100644 --- a/docs/guides/code-server-traefik-kubernetes.md +++ b/docs/guides/code-server-traefik-kubernetes.md @@ -59,7 +59,7 @@ additionalArguments: - "--experimental.plugins.sablier.moduleName=github.com/sablierapp/sablier" - - "--experimental.plugins.sablier.version=v1.8.1-beta.22" + - "--experimental.plugins.sablier.version=v1.8.1" providers: kubernetesIngress: @@ -143,7 +143,7 @@ serviceAccount: sablier containers: - name: sablier - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 args: - "start" - "--provider.name=kubernetes" diff --git a/docs/health.md b/docs/health.md index b391e2d7..94bd9e95 100644 --- a/docs/health.md +++ b/docs/health.md @@ -16,7 +16,7 @@ You can use the command `sablier health` to check for healthiness. ```yml services: sablier: - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docs/installation.md b/docs/installation.md index 00a9d6d0..5bf88ed4 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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-beta.22 + -v $PWD/sablier.yml:/etc/sablier/sablier.yml sablierapp/sablier:1.8.1 ``` ## Use the binary distribution diff --git a/docs/plugins/traefik.md b/docs/plugins/traefik.md index b66e7b8b..be5e1cbd 100644 --- a/docs/plugins/traefik.md +++ b/docs/plugins/traefik.md @@ -103,7 +103,7 @@ experimental: ```bash --experimental.plugins.sablier.modulename=github.com/sablierapp/sablier ---experimental.plugins.sablier.version=v1.8.1-beta.22 +--experimental.plugins.sablier.version=v1.8.1 ``` diff --git a/docs/providers/docker.md b/docs/providers/docker.md index e999137d..88f41e9b 100644 --- a/docs/providers/docker.md +++ b/docs/providers/docker.md @@ -34,7 +34,7 @@ PROVIDER_NAME=docker ```yaml services: sablier: - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 command: - start - --provider.name=docker diff --git a/docs/providers/docker_swarm.md b/docs/providers/docker_swarm.md index c8c99be7..04f9ef0a 100644 --- a/docs/providers/docker_swarm.md +++ b/docs/providers/docker_swarm.md @@ -35,7 +35,7 @@ PROVIDER_NAME=docker_swarm # or swarm ```yaml services: sablier: - image: sablierapp/sablier:1.8.1-beta.22 + image: sablierapp/sablier:1.8.1 command: - start - --provider.name=docker_swarm # or swarm diff --git a/docs/themes.md b/docs/themes.md index 3614ec81..6f7f0623 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -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-beta.22 + image: sablierapp/sablier:1.8.1 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes' diff --git a/plugins/traefik/README.md b/plugins/traefik/README.md index 233d35c3..c7c1e01e 100644 --- a/plugins/traefik/README.md +++ b/plugins/traefik/README.md @@ -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-beta.22 + - --experimental.plugins.sablier.version=v1.8.1 ports: - "8080:80" volumes: