Initial commit; setting up raine to serve simple static site plus gitea.

This commit is contained in:
2026-04-17 15:40:46 -07:00
commit 753be86ca4
7 changed files with 173 additions and 0 deletions

12
gitea/compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
gitea:
container_name: gitea
image: gitea/gitea:latest
restart: unless-stopped
environment:
- USER_UID=1000
- USER_GID=1000
volumes:
- ./data:/data
ports:
- "3000:3000"