This guide uses Docker Compose to run GitBucket.
For Docker installation, see Docker.
mkdir -p /opt/gitbucket
cd /opt/gitbucket
Create a docker-compose.yml file:
services:
gitbucket:
image: ghcr.io/gitbucket/gitbucket:latest
container_name: gitbucket
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./gitbucket-data:/gitbucket
docker compose up -d
http://localhost:8080ghcr.io/gitbucket/gitbucketAny questions?
Feel free to contact us. Find all contact information on our contact page.