https://github.com/gitbucket/gitbucket-docker
Docker image of GitBucket which is an open source GitHub server powered by Scala
https://github.com/gitbucket/gitbucket-docker
Last synced: about 1 month ago
JSON representation
Docker image of GitBucket which is an open source GitHub server powered by Scala
- Host: GitHub
- URL: https://github.com/gitbucket/gitbucket-docker
- Owner: gitbucket
- Created: 2016-02-27T18:05:54.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2026-01-11T03:04:21.000Z (about 2 months ago)
- Last Synced: 2026-01-11T07:09:42.902Z (about 2 months ago)
- Language: Dockerfile
- Homepage: https://github.com/gitbucket/gitbucket-docker/pkgs/container/gitbucket
- Size: 72.3 KB
- Stars: 65
- Watchers: 8
- Forks: 24
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
gitbucket-docker [](https://github.com/gitbucket/gitbucket-docker/actions/workflows/default.yml) [](https://github.com/gitbucket/gitbucket-docker/actions/workflows/nightly.yml)
========
Docker image of GitBucket which is an open source GitHub server powered by Scala
How to use this image
--------
```
docker run -d -p 8080:8080 ghcr.io/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 ghcr.io/gitbucket/gitbucket
```
You can also specify the data directory by `-v` option:
```
docker run -d -p 8080:8080 -v `pwd`/gitbucket:/gitbucket ghcr.io/gitbucket/gitbucket
```
You can configure GitBucket via environment variables. For example, the uploadable file size can be set to 10MB as follows:
```
docker run -d -p 8080:8080 -e GITBUCKET_MAXFILESIZE=10485760 ghcr.io/gitbucket/gitbucket
```
See more details about how to configure GitBucket at: https://github.com/gitbucket/gitbucket/wiki/Basic-configurations