From 15de0fd3e44b909b6a1c353005ab83688321ad4e Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Mon, 5 Feb 2024 05:25:38 +0000 Subject: [PATCH] docs(release): update doc version 1.6.0 [skip ci] --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- docker-compose.yml | 4 ++-- 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 | 4 ++-- docs/providers/docker.md | 2 +- docs/providers/docker_swarm.md | 2 +- docs/themes.md | 2 +- plugins/caddy/Dockerfile.remote | 2 +- plugins/caddy/README.md | 6 +++--- plugins/traefik/README.md | 6 +++--- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f0b1496..77b20aa 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ assignees: '' A clear and concise description of what the bug is. **Context** - - Sablier version: [e.g. 1.2.0-beta.1] + - Sablier version: [e.g. 1.6.0] - Provider: [e.g. docker v20.10.21] - Reverse proxy: [e.g. traefik v2.8.5] - Sablier running inside a container? diff --git a/docker-compose.yml b/docker-compose.yml index 6b3e865..f157d4d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: image: traefik:2.10.7 command: - --experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier - - --experimental.plugins.sablier.version=v1.6.0-beta.1 + - --experimental.plugins.sablier.version=v1.6.0 - --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.6.0-beta.1 + image: acouvreur/sablier:1.6.0 volumes: - '/var/run/docker.sock:/var/run/docker.sock' labels: diff --git a/docs/configuration.md b/docs/configuration.md index 2e961e9..0f77716 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -87,7 +87,7 @@ sablier --help # or docker run acouvreur/sablier[:version] --help -# ex: docker run acouvreur/sablier:1.6.0-beta.1 --help +# ex: docker run acouvreur/sablier:1.6.0 --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 c198b20..e762722 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -78,7 +78,7 @@ services: image: containous/whoami:v1.5.0 sablier: - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 command: - start - --provider.name=docker @@ -113,7 +113,7 @@ services: image: containous/whoami:v1.5.0 sablier: - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 command: - start - --provider.name=docker diff --git a/docs/guides/code-server-traefik-kubernetes.md b/docs/guides/code-server-traefik-kubernetes.md index ed80ebb..2512e90 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/acouvreur/sablier" - - "--experimental.plugins.sablier.version=v1.6.0-beta.1" + - "--experimental.plugins.sablier.version=v1.6.0" providers: kubernetesIngress: @@ -143,7 +143,7 @@ serviceAccount: sablier containers: - name: sablier - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 args: - "start" - "--provider.name=kubernetes" diff --git a/docs/health.md b/docs/health.md index a4e5d64..28bfa39 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: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docs/installation.md b/docs/installation.md index 92f794d..717cb7f 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 acouvreur/sablier:1.6.0-beta.1 + -v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.6.0 ``` ## Use the binary distribution diff --git a/docs/plugins/traefik.md b/docs/plugins/traefik.md index 77b7c50..ba6a672 100644 --- a/docs/plugins/traefik.md +++ b/docs/plugins/traefik.md @@ -98,14 +98,14 @@ experimental: plugins: sablier: moduleName: "github.com/acouvreur/sablier" - version: "v1.4.0-beta.11" + version: "v1.6.0" ``` #### **CLI** ```bash --experimental.plugins.sablier.modulename=github.com/acouvreur/sablier ---experimental.plugins.sablier.version=v1.6.0-beta.1 +--experimental.plugins.sablier.version=v1.6.0 ``` diff --git a/docs/providers/docker.md b/docs/providers/docker.md index c61616d..9ad9fd8 100644 --- a/docs/providers/docker.md +++ b/docs/providers/docker.md @@ -34,7 +34,7 @@ PROVIDER_NAME=docker ```yaml services: sablier: - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 command: - start - --provider.name=docker diff --git a/docs/providers/docker_swarm.md b/docs/providers/docker_swarm.md index 110abce..3838621 100644 --- a/docs/providers/docker_swarm.md +++ b/docs/providers/docker_swarm.md @@ -35,7 +35,7 @@ PROVIDER_NAME=docker_swarm ```yaml services: sablier: - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 command: - start - --provider.name=docker_swarm diff --git a/docs/themes.md b/docs/themes.md index b1c8bcd..403fd73 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: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes' diff --git a/plugins/caddy/Dockerfile.remote b/plugins/caddy/Dockerfile.remote index 1de1d18..1dc7c5d 100644 --- a/plugins/caddy/Dockerfile.remote +++ b/plugins/caddy/Dockerfile.remote @@ -1,5 +1,5 @@ ARG CADDY_VERSION=2.7.6 -ARG SABLIER_VERSION=v1.4.0-beta.1 +ARG SABLIER_VERSION=v1.6.0 FROM caddy:${CADDY_VERSION}-builder AS builder ADD https://github.com/acouvreur/sablier.git#${SABLIER_VERSION} /sablier diff --git a/plugins/caddy/README.md b/plugins/caddy/README.md index 487cde0..2775796 100644 --- a/plugins/caddy/README.md +++ b/plugins/caddy/README.md @@ -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.6.0-beta.1:plugins/caddy +docker build https://github.com/acouvreur/sablier.git#v1.6.0: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.6.0-beta.1`) +**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.6.0`) ### By updating your Caddy Dockerfile @@ -29,7 +29,7 @@ docker build https://github.com/acouvreur/sablier.git#v1.6.0-beta.1:plugins/cadd ARG CADDY_VERSION=2.6.4 FROM caddy:${CADDY_VERSION}-builder AS builder -ADD https://github.com/acouvreur/sablier.git#v1.6.0-beta.1 /sablier +ADD https://github.com/acouvreur/sablier.git#v1.6.0 /sablier RUN xcaddy build \ --with github.com/acouvreur/sablier/plugins/caddy=/sablier/plugins/caddy diff --git a/plugins/traefik/README.md b/plugins/traefik/README.md index 140842b..a3a6c99 100644 --- a/plugins/traefik/README.md +++ b/plugins/traefik/README.md @@ -17,7 +17,7 @@ experimental: plugins: sablier: moduleName: "github.com/acouvreur/sablier" - version: "v1.4.0-beta.11" + version: "v1.6.0" ``` 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.6.0-beta.1 + - --experimental.plugins.sablier.version=v1.6.0 ports: - "8080:80" volumes: @@ -80,7 +80,7 @@ services: - './dynamic-config.yml:/etc/traefik/dynamic-config.yml' sablier: - image: acouvreur/sablier:1.6.0-beta.1 + image: acouvreur/sablier:1.6.0 command: - start - --provider.name=docker