Today, we are pleased to announce the availability of new version of Scala based Git centric software development platform GitBucket 4.29.0!

Official Docker support

Official Docker image is now available on DockerHub!

DockerHub

You can run GitBucket using docker command immediately:

$ docker run -d -p 8080:8080 gitbucket/gitbucket

Add -p 29418:29418 option if you would like to enable SSH for repository access:

$ docker run -d -p 8080:8080 -p 29418:29418 gitbucket/gitbucket

You can also specify the data directory by -v option:

$ docker run -d -p 8080:8080 -v `pwd`/gitbucket:/gitbucket gitbucket/gitbucket

Enhance edit button of the repository viewer

In the repository viewer, direct edit button is now available for README, and edit and delete button are iconized.

Direct edit button for README

Edit and delete buttons are iconized

Confirm dialog for dangerous operations

Before this release, GitBucket shown a confirmation dialog for only repository deletion. Now it shows for also “Transfer Ownership” and “Garbage collection” for further safety.

Confirmation dialog for dangerous operations

In addition, this release contains some improvements and bug fixes. See all closed issues in this release to know details.

Enjoy GitBucket!