Skip to content

Commit

Permalink
docs: adds all counts to one sum (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwydler authored Dec 6, 2024
1 parent 172bd87 commit 865dced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docker-compose-traefik-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
image: ldez/traefik-certs-dumper:v2.8.3
entrypoint: sh -c '
while ! [ -e /data/acme.json ]
|| ! [ `jq ".[] | .Certificates | length" /data/acme.json` != 0 ]; do
|| ! [ `jq ".[] | .Certificates | length" /data/acme.json | jq -s "add" ` != 0 ]; do
sleep 1
; done
&& traefik-certs-dumper file --version v2 --watch
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ services:
container_name: traefik-certs-dumper
entrypoint: sh -c '
while ! [ -e /data/acme.json ]
|| ! [ `jq ".[] | .Certificates | length" /data/acme.json` != 0 ]; do
|| ! [ `jq ".[] | .Certificates | length" /data/acme.json | jq -s "add" ` != 0 ]; do
sleep 1
; done
&& traefik-certs-dumper file --version v2 --watch
Expand Down

0 comments on commit 865dced

Please sign in to comment.