mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
docs(release): update doc version from 1.8.0-beta.19 to 1.8.0-beta.20 [skip ci]
This commit is contained in:
committed by
Alexis Couvreur
parent
322926ca6a
commit
8ada60bb65
@@ -5,7 +5,7 @@ services:
|
||||
image: traefik:v3.1.2
|
||||
command:
|
||||
- --experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier
|
||||
- --experimental.plugins.sablier.version=v1.8.0-beta.19
|
||||
- --experimental.plugins.sablier.version=v1.8.0-beta.20
|
||||
- --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.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
volumes:
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
labels:
|
||||
|
||||
@@ -87,7 +87,7 @@ sablier --help
|
||||
# or
|
||||
|
||||
docker run acouvreur/sablier[:version] --help
|
||||
# ex: docker run acouvreur/sablier:1.8.0-beta.19 --help
|
||||
# ex: docker run acouvreur/sablier:1.8.0-beta.20 --help
|
||||
```
|
||||
|
||||
All arguments can be used in the form of the config file such as
|
||||
|
||||
@@ -78,7 +78,7 @@ services:
|
||||
image: acouvreur/whoami:v1.10.2
|
||||
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker
|
||||
@@ -113,7 +113,7 @@ services:
|
||||
image: acouvreur/whoami:v1.10.2
|
||||
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
|
||||
additionalArguments:
|
||||
- "--experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier"
|
||||
- "--experimental.plugins.sablier.version=v1.8.0-beta.19"
|
||||
- "--experimental.plugins.sablier.version=v1.8.0-beta.20"
|
||||
|
||||
providers:
|
||||
kubernetesIngress:
|
||||
@@ -143,7 +143,7 @@
|
||||
serviceAccount: sablier
|
||||
containers:
|
||||
- name: sablier
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
args:
|
||||
- "start"
|
||||
- "--provider.name=kubernetes"
|
||||
|
||||
@@ -16,7 +16,7 @@ You can use the command `sablier health` to check for healthiness.
|
||||
```yml
|
||||
services:
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
healthcheck:
|
||||
test: ["sablier", "health"]
|
||||
interval: 1m30s
|
||||
|
||||
@@ -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.8.0-beta.19
|
||||
-v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.8.0-beta.20
|
||||
```
|
||||
|
||||
## Use the binary distribution
|
||||
|
||||
@@ -96,14 +96,14 @@ experimental:
|
||||
plugins:
|
||||
sablier:
|
||||
moduleName: "github.com/acouvreur/sablier"
|
||||
version: "v1.8.0-beta.19"
|
||||
version: "v1.8.0-beta.20"
|
||||
```
|
||||
|
||||
#### **CLI**
|
||||
|
||||
```bash
|
||||
--experimental.plugins.sablier.modulename=github.com/acouvreur/sablier
|
||||
--experimental.plugins.sablier.version=v1.8.0-beta.19
|
||||
--experimental.plugins.sablier.version=v1.8.0-beta.20
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
@@ -34,7 +34,7 @@ PROVIDER_NAME=docker
|
||||
```yaml
|
||||
services:
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker
|
||||
|
||||
@@ -35,7 +35,7 @@ PROVIDER_NAME=docker_swarm # or swarm
|
||||
```yaml
|
||||
services:
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker_swarm # or swarm
|
||||
|
||||
@@ -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.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
volumes:
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
- '/path/to/my/themes:/etc/sablier/themes'
|
||||
|
||||
@@ -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.8.0-beta.19:plugins/caddy
|
||||
docker build https://github.com/acouvreur/sablier.git#v1.8.0-beta.20: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.8.0-beta.19`)
|
||||
**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.8.0-beta.20`)
|
||||
|
||||
### By updating your Caddy Dockerfile
|
||||
|
||||
@@ -29,7 +29,7 @@ docker build https://github.com/acouvreur/sablier.git#v1.8.0-beta.19:plugins/cad
|
||||
ARG CADDY_VERSION=2.6.4
|
||||
FROM caddy:${CADDY_VERSION}-builder AS builder
|
||||
|
||||
ADD https://github.com/acouvreur/sablier.git#v1.8.0-beta.19 /sablier
|
||||
ADD https://github.com/acouvreur/sablier.git#v1.8.0-beta.20 /sablier
|
||||
|
||||
RUN xcaddy build \
|
||||
--with github.com/acouvreur/sablier/plugins/caddy=/sablier/plugins/caddy
|
||||
|
||||
@@ -17,7 +17,7 @@ experimental:
|
||||
plugins:
|
||||
sablier:
|
||||
moduleName: "github.com/acouvreur/sablier"
|
||||
version: "v1.8.0-beta.19"
|
||||
version: "v1.8.0-beta.20"
|
||||
```
|
||||
|
||||
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.8.0-beta.19
|
||||
- --experimental.plugins.sablier.version=v1.8.0-beta.20
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
@@ -80,7 +80,7 @@ services:
|
||||
- './dynamic-config.yml:/etc/traefik/dynamic-config.yml'
|
||||
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.8.0-beta.19
|
||||
image: acouvreur/sablier:1.8.0-beta.20
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker
|
||||
|
||||
Reference in New Issue
Block a user