Local Git Server Pakai Gitea
27 Januari 2019
Apa itu gitea?
Gitea is an open-source forge software package for hosting software development version control using Git as well as other collaborative features like bug tracking, wikis and code review. It supports self-hosting but also provides a free public first-party instance. It is a fork of Gogs and is written in Go
Bahan:
Docker Docker Compose docker-compose.yaml version:"2"networks:gitea:external:falseservices:server:image:gitea/gitea:1.10.0environment:- USER_UID=1000- USER_GID=1000- DB_TYPE=mysql- DB_HOST=db:3306- DB_NAME=gitea- DB_USER=gitea- DB_PASSWD=gitearestart:alwaysnetworks:- giteavolumes:- .…