mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/fold-stack.git
synced 2026-06-18 01:15:14 +00:00
7 lines
206 B
Bash
Executable file
7 lines
206 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Fix ownership (ignore failure in rootless mode)
|
|
chown -R 1000:1000 /var/lib/gitea || echo "Warning: chown failed, likely due to rootless mode."
|
|
|
|
# Start Forgejo
|
|
exec /usr/local/bin/forgejo web
|