initial commit

This commit is contained in:
Peter Meier
2025-10-16 22:54:40 +02:00
parent d80ca5979e
commit 5e6faaffcf
23 changed files with 1608 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Gitea startup script
cd /opt/gitea
# Pull latest image
docker-compose pull
# Start the service
docker-compose up -d
# Check if container is running
if docker-compose ps | grep -q "Up"; then
echo "Gitea started successfully"
echo "Access it at: https://{{ gitea_domain }}"
else
echo "Failed to start Gitea"
exit 1
fi