Gitea on Docker

Gitea on Docker

Gitea is a lightweight GIT repository management application written in GO-Language.

10022 is the SSH port for GIT command
10080 is the HTTP port for the web interface

docker run -d --name=gitea -p 10022:22 -p 10080:3000 -v /var/lib/gitea:/data gitea/gitea:latest

Source: https://docs.gitea.io/zh-tw/install-with-docker/