Standardize all compose files to .yml extension

This commit is contained in:
Kevin Douglas
2026-04-27 10:43:47 -04:00
parent 02b39d78ea
commit 0b85e9da80
21 changed files with 0 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
version: '3.8'
volumes:
gitea_data:
services:
server:
image: docker.gitea.com/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- TZ=America/New_York
restart: unless-stopped
volumes:
- gitea_data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3131:3000" # Web UI - change host port if 3000 is in use
- "2222:22" # SSH - mapped to avoid host SSH conflict