microbox/gogs
The gogs with sshd docker image only has 39MB in size.
2.1K
Gogs is a painless self-hosted Git Service written in Go.
Microbox repackage Gogs from the latest source and make it into a solid and easy-to-use docker image.
Launch gogs and persistent data to local
docker run -d -p 22:22 -p 3000:3000 -v /data/gogs:/data microbox/gogs:latest --name gogs
Upgrade to a newer version
docker stop gogs
docker rm gogs
docker run -d -p 22:22 -p 3000:3000 -v /data/gogs:/data microbox/gogs:latest --name gogs
docker pull microbox/gogs