1
0
This repository has been archived on 2024-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
Docker-GitBucket-ARM64/docker-compose.yml
2021-11-29 06:09:35 +01:00

20 lines
474 B
YAML

version: "3.3"
services:
gitbucket:
container_name: gitbucket
build:
context: .
dockerfile: Dockerfile
ports:
- 8080:8080 # HTTP
- 8443:8443 # HTTPS (Optionnal)
- 29418:29418 # SSH (Optionnal, disabled by default)
volumes:
- ./data:/gitbucket/gitbucket_data
restart: unless-stopped
# Both of these can be commented if you don't intend to use a shell in the container.
tty: true
stdin_open: true