Fix table flex sizing and move deploy scripts

- Make data tables fill available height so scrolling behaves correctly
- Relocate deploy scripts under `deploy/docker`
This commit is contained in:
dirtydishes 2026-05-07 22:16:21 -04:00
parent 9c351d12d1
commit de9a965a6c
3 changed files with 3 additions and 0 deletions

6
deploy/docker/deploy-branch.sh Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
git fetch
git pull
docker compose up -d --build --force-recreate

7
deploy/docker/deploy.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
git fetch
git switch deployment
git pull
docker compose up -d --build --force-recreate