From a6d6601860da60b5fabf9975f67baff466c8c45b Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Sun, 26 Mar 2023 14:47:10 +0000 Subject: [PATCH] docs(release): change version from `v1.3.0` to `1.3.0` The docker image is not published using the `v` prefix --- README.md | 6 +++--- docker-compose.yml | 2 +- docs/THEMES.md | 2 +- docs/guides/code-server-traefik-kubernetes.md | 2 +- plugins/traefik/README.md | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ff3b3df..6dce094 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ sablier --help # or docker run acouvreur/sablier[:version] --help -# ex: docker run acouvreur/sablier:v1.3.0 --help +# ex: docker run acouvreur/sablier:1.3.0 --help ``` All arguments can be used in the form of the config file such as @@ -232,7 +232,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:v1.3.0 + -v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.3.0 ``` ### Use the binary distribution @@ -331,7 +331,7 @@ You can use the command `sablier health` to check for healthiness. ```yml services: sablier: - image: acouvreur/sablier:v1.3.0 + image: acouvreur/sablier:1.3.0 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docker-compose.yml b/docker-compose.yml index ed12263..be0efaf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,7 @@ services: - './dynamic-config.yml:/etc/traefik/dynamic-config.yml' sablier: - image: acouvreur/sablier:v1.3.0 + image: acouvreur/sablier:1.3.0 volumes: - '/var/run/docker.sock:/var/run/docker.sock' labels: diff --git a/docs/THEMES.md b/docs/THEMES.md index 8bde370..26a0408 100644 --- a/docs/THEMES.md +++ b/docs/THEMES.md @@ -21,7 +21,7 @@ version: 3.9 services: sablier: - image: acouvreur/sablier:v1.3.0 + image: acouvreur/sablier:1.3.0 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes' diff --git a/docs/guides/code-server-traefik-kubernetes.md b/docs/guides/code-server-traefik-kubernetes.md index a142fef..b1a7d56 100644 --- a/docs/guides/code-server-traefik-kubernetes.md +++ b/docs/guides/code-server-traefik-kubernetes.md @@ -152,7 +152,7 @@ serviceAccount: sablier containers: - name: sablier - image: acouvreur/sablier:v1.3.0 + image: acouvreur/sablier:1.3.0 args: - "start" - "--provider.name=kubernetes" diff --git a/plugins/traefik/README.md b/plugins/traefik/README.md index 81a9902..4e79b67 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.3.0-beta.3" + version: "v1.3.0" ``` 2. Configure the plugin using the Dynamic Configuration. Example: @@ -71,7 +71,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=vv1.3.0 + - --experimental.plugins.sablier.version=v1.3.0 ports: - "8080:80" volumes: @@ -79,7 +79,7 @@ services: - './dynamic-config.yml:/etc/traefik/dynamic-config.yml' sablier: - image: acouvreur/sablier:v1.3.0 + image: acouvreur/sablier:1.3.0 command: - start - --provider.name=docker