From 3cd7a1cc30e46c0803430ce3e5b57c844b1cf42a Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Fri, 11 Nov 2022 18:56:12 +0000 Subject: [PATCH] docs: add sablier.sample.yaml conf --- README.md | 4 +++- sablier.sample.yaml | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 sablier.sample.yaml diff --git a/README.md b/README.md index 69c80b3..7b1ee51 100644 --- a/README.md +++ b/README.md @@ -188,10 +188,12 @@ You can install Traefik with the following flavors: ### Use the Docker image - **Docker Hub**: [acouvreur/sablier](https://hub.docker.com/r/acouvreur/sablier) -- **Guthub Container Registry**: [ghcr.io/acouvreur/sablier](https://github.com/acouvreur/sablier/pkgs/container/sablier) +- **Github Container Registry**: [ghcr.io/acouvreur/sablier](https://github.com/acouvreur/sablier/pkgs/container/sablier) Choose one of the Docker images and run it with one sample configuration file: +- [sablier.yaml](https://raw.githubusercontent.com/acouvreur/sablier/main/sablier.sample.yaml) + ```bash docker run -d -p 10000:10000 \ -v $PWD/sablier.yml:/etc/sablier/sablier.yml acouvreur/sablier:1.1.0 diff --git a/sablier.sample.yaml b/sablier.sample.yaml new file mode 100644 index 0000000..ced527e --- /dev/null +++ b/sablier.sample.yaml @@ -0,0 +1,20 @@ +provider: + name: docker +server: + port: 10000 + base-path: / +storage: + file: +sessions: + default-duration: 5m + expiration-interval: 20s +logging: + level: info +strategy: + dynamic: + custom-themes-path: + show-details-by-default: true + default-theme: hacker-terminal + default-refresh-frequency: 5s + blocking: + default-timeout: 1m \ No newline at end of file