blog/docker/docker-init.sh
2024-12-09 17:16:30 +01:00

19 lines
No EOL
289 B
Bash

#!/bin/bash
python -V
# clone and build blog
cd /
rm -rf /blog
git clone https://github.com/kianby/blog.git
cd /blog
uv python pin 3.12.8
uv sync
uv run python ./makesite.py
# nginx serve
#nginx -g 'daemon off;'
nginx
# exit on change in stacosys or Git repo
uv run python monitor.py