- docker-services: 14 generic compose templates (portainer, npm, vaultwarden, gitea, jotty, nextcloud-aio, rustdesk, audiobookshelf, calibre-web, plex, erugo, jswiki, speedtest, watchtower) - install-scripts: bash scripts for Ubuntu server bootstrap, docker, portainer, npm, backup, restore - ansible: 4 playbooks (bootstrap, deploy-services, update-services, security-hardening) + roles skeleton - hermes-install: Hermes CLI setup on macOS - macos-setup: Brewfile + osx-defaults + fish-config - home-nas-tools: metadata index for NAS projects (no binaries) - docs: architecture, security, contributing - README, LICENSE (MIT), .gitignore
40 lines
930 B
YAML
40 lines
930 B
YAML
# Gitea – self-hosted Git server
|
||
|
||
services:
|
||
server:
|
||
image: docker.gitea.com/gitea:1.27.1
|
||
container_name: gitea
|
||
environment:
|
||
- USER_UID=1000
|
||
- USER_GID=1000
|
||
- GITEA__webhook__SKIP_TLS_VERIFY=false
|
||
- GITEA__service__DISABLE_REGISTRATION=false
|
||
- GITEA__service__REQUIRE_SIGNIN_VIEW=false
|
||
- GITEA__session__COOKIE_SECURE=false
|
||
restart: unless-stopped
|
||
networks:
|
||
- gitea_net
|
||
volumes:
|
||
- ./gitea:/data
|
||
- /etc/timezone:/etc/timezone:ro
|
||
- /etc/localtime:/etc/localtime:ro
|
||
ports:
|
||
- "3000:3000"
|
||
- "222:22"
|
||
healthcheck:
|
||
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
|
||
interval: 30s
|
||
timeout: 10s
|
||
retries: 3
|
||
start_period: 30s
|
||
logging:
|
||
driver: json-file
|
||
options:
|
||
max-size: "10m"
|
||
max-file: "3"
|
||
|
||
networks:
|
||
gitea_net:
|
||
name: gitea_default
|
||
driver: bridge
|