mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
docs(release): update doc version from 1.4.0-beta.2 to 1.4.0-beta.3 [skip ci]
This commit is contained in:
@@ -185,7 +185,7 @@ sablier --help
|
||||
# or
|
||||
|
||||
docker run acouvreur/sablier[:version] --help
|
||||
# ex: docker run acouvreur/sablier:1.4.0-beta.2 --help
|
||||
# ex: docker run acouvreur/sablier:1.4.0-beta.3 --help
|
||||
```
|
||||
|
||||
All arguments can be used in the form of the config file such as
|
||||
@@ -221,7 +221,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.4.0-beta.2
|
||||
-v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.4.0-beta.3
|
||||
```
|
||||
|
||||
### Use the binary distribution
|
||||
@@ -320,7 +320,7 @@ You can use the command `sablier health` to check for healthiness.
|
||||
```yml
|
||||
services:
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.4.0-beta.2
|
||||
image: acouvreur/sablier:1.4.0-beta.3
|
||||
healthcheck:
|
||||
test: ["sablier", "health"]
|
||||
interval: 1m30s
|
||||
|
||||
@@ -5,7 +5,7 @@ services:
|
||||
image: traefik:2.9.1
|
||||
command:
|
||||
- --experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier
|
||||
- --experimental.plugins.sablier.version=v1.4.0-beta.2
|
||||
- --experimental.plugins.sablier.version=v1.4.0-beta.3
|
||||
- --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.4.0-beta.2
|
||||
image: acouvreur/sablier:1.4.0-beta.3
|
||||
volumes:
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
labels:
|
||||
|
||||
@@ -21,7 +21,7 @@ version: 3.9
|
||||
|
||||
services:
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.4.0-beta.2
|
||||
image: acouvreur/sablier:1.4.0-beta.3
|
||||
volumes:
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
- '/path/to/my/themes:/etc/sablier/themes'
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
|
||||
additionalArguments:
|
||||
- "--experimental.plugins.sablier.moduleName=github.com/acouvreur/sablier"
|
||||
- "--experimental.plugins.sablier.version=v1.4.0-beta.2"
|
||||
- "--experimental.plugins.sablier.version=v1.4.0-beta.3"
|
||||
|
||||
providers:
|
||||
kubernetesIngress:
|
||||
@@ -152,7 +152,7 @@
|
||||
serviceAccount: sablier
|
||||
containers:
|
||||
- name: sablier
|
||||
image: acouvreur/sablier:1.4.0-beta.2
|
||||
image: acouvreur/sablier:1.4.0-beta.3
|
||||
args:
|
||||
- "start"
|
||||
- "--provider.name=kubernetes"
|
||||
|
||||
@@ -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.4.0-beta.2:plugins/caddy
|
||||
docker build https://github.com/acouvreur/sablier.git#v1.4.0-beta.3: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.4.0-beta.2`)
|
||||
**Note:** You can change `main` for any other branch (such as `beta`, or tags `v1.4.0-beta.3`)
|
||||
|
||||
### By updating your Caddy Dockerfile
|
||||
|
||||
@@ -29,7 +29,7 @@ docker build https://github.com/acouvreur/sablier.git#v1.4.0-beta.2:plugins/cadd
|
||||
ARG CADDY_VERSION=2.6.4
|
||||
FROM caddy:${CADDY_VERSION}-builder AS builder
|
||||
|
||||
ADD https://github.com/acouvreur/sablier.git#v1.4.0-beta.2 /sablier
|
||||
ADD https://github.com/acouvreur/sablier.git#v1.4.0-beta.3 /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.4.0-beta.2"
|
||||
version: "v1.4.0-beta.3"
|
||||
```
|
||||
|
||||
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=v1.4.0-beta.2
|
||||
- --experimental.plugins.sablier.version=v1.4.0-beta.3
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
@@ -79,7 +79,7 @@ services:
|
||||
- './dynamic-config.yml:/etc/traefik/dynamic-config.yml'
|
||||
|
||||
sablier:
|
||||
image: acouvreur/sablier:1.4.0-beta.2
|
||||
image: acouvreur/sablier:1.4.0-beta.3
|
||||
command:
|
||||
- start
|
||||
- --provider.name=docker
|
||||
|
||||
Reference in New Issue
Block a user