728x90
반응형
라즈베리파이4 debian OS 에서 아래와 같이 gitlab-ce 를 설치하였다
아래 내용은 arm64용 gitlab 을 설치하기 위한 docker-compose 스크립트이다
설치 명령어
docker-compose up -d
파일명
docker-compose.yml
version: '3.3'
services:
gitlab-ce-arm64v8:
ports:
- '18080:80'
- '18822:22'
- '18443:443'
volumes:
- '/var/run/docker.sock:/tmp/docker.sock:ro'
- './config:/etc/gitlab'
- './logs:/var/log/gitlab'
- './data:/var/opt/gitlab'
restart: 'unless-stopped'
logging:
options:
max-size: 1g
container_name: 'gitlab'
environment:
- 'GITLAB_OMNIBUS_CONFIG=nginx[''redirect_http_to_https''] = true;'
image: 'yrzr/gitlab-ce-arm64v8:latest'
접속 URL
http://[서버IP]:18080
초기계정 : root
초기 비밀번호 : 아래 명령어로 확인
초기 비밀번호
sudo cat config/initial_root_password
orangepi@orangepi5:~/docker/docker/gitlab$ sudo cat config/initial_root_password
[sudo] password for orangepi:
# WARNING: This value is valid only in the following conditions
# 1. If provided manually (either via `GITLAB_ROOT_PASSWORD` environment variable or via `gitlab_rails['initial_root_password']` setting in `gitlab.rb`, it was provided before database was seeded for the first time (usually, the first reconfigure run).
# 2. Password hasn't been changed manually, either via UI or via command line.
#
# If the password shown here doesn't work, you must reset the admin password following https://docs.gitlab.com/ee/security/reset_user_password.html#reset-your-root-password.
Password: c4+xf8CFhDEzozs8sXUNjCHhYU471ndK1oYTneSXqRQ=
# NOTE: This file will be automatically deleted in the first reconfigure run after 24 hours.
[Docker] 도커의 모든 것, 도커 추천 이미지!!! (tistory.com)
728x90
반응형
LIST
'Docker' 카테고리의 다른 글
[Docker] Docker-compose 로 netdata 시스템 모니터링 설치 (2) | 2023.01.18 |
---|---|
[Docker] docker-compose 로 heimdall 설치 (4) | 2023.01.05 |
[Docker] docker-compose 로 File Browser 설치 (4) | 2023.01.05 |
[Docker] Docker-compose 로 Portainer 설치 (4) | 2023.01.05 |
[Docker] docker-compose 로 Jenkins 설치 (2) | 2022.12.20 |