- Make data tables fill available height so scrolling behaves correctly - Relocate deploy scripts under `deploy/docker`
7 lines
126 B
Bash
Executable file
7 lines
126 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
git fetch
|
|
git switch deployment
|
|
git pull
|
|
docker compose up -d --build --force-recreate
|