Skip to content

Commit

Permalink
fix formatting (#210)
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Funkhouser <[email protected]>
  • Loading branch information
golanglemonade authored Nov 15, 2024
1 parent 83202d8 commit 9881822
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ repos:
hooks:
- id: yamlfmt
- repo: https://github.com/crate-ci/typos
# ensure this stays in this format, the auto-updater might update to something like typos-dict-v0.11.35 which is not correct
rev: v1.27.3
hooks:
- id: typos
Expand Down
18 changes: 9 additions & 9 deletions docker/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ tasks:
- "docker compose -p redis down"

riverboat:
dir: ..
desc: brings up the compose environment for riverboat
env:
RIVERBOAT_TAG: "{{.RIVERBOAT_TAG}}"
vars:
RIVERBOAT_TAG:
sh: "uname=$(uname -m); if [ $uname = 'x86_64' ]; then echo 'amd64-latest'; else echo 'arm64-latest'; fi"
cmds:
- "docker compose -f ./docker/docker-compose-riverboat.yml -p riverboat up -d"
dir: ..
desc: brings up the compose environment for riverboat
env:
RIVERBOAT_TAG: "{{.RIVERBOAT_TAG}}"
vars:
RIVERBOAT_TAG:
sh: "uname=$(uname -m); if [ $uname = 'x86_64' ]; then echo 'amd64-latest'; else echo 'arm64-latest'; fi"
cmds:
- "docker compose -f ./docker/docker-compose-riverboat.yml -p riverboat up -d"

riverboat:down:
dir: ..
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-pg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
volumes:
- ./pg-init-scripts:/docker-entrypoint-initdb.d
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
Expand Down

0 comments on commit 9881822

Please sign in to comment.