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
Herwin 91205e913b Initial commit
Update Dockerfile, docker-compose.yml, and readme.md
2021-11-21 03:15:56 +01:00

21 lines
552 B
YAML

version: "3.3"
services:
gitbucket:
container_name: gitbucket
build:
context: .
dockerfile: Dockerfile
ports:
- 30880:8080
#- 30022:8443 # HTTPS port ?
- 30022:29418
volumes:
- ./data:/gitbucket/gitbucket_data
environment:
# Does not work, for some reason.
GITBUCKET_MAXFILESIZE: 67108864
restart: unless-stopped
tty: true # Can be commented if you don't intend to use a shell in the container.
stdin_open: true # Can also be commented for the same reason as above.