Docker

[Docker] docker-compose 로 arm64 용 gitlab-ce 설치하기

IT-PAPA 2022. 12. 14. 22:23
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)

 

[Docker] 도커의 모든 것, 도커 추천 이미지!!!

필자는 이때까지 docker로 구축한 모든 목록을 이 블로그에 담았다. 앞으로도 이 페이지는 필자가 도커를 구축할 때마다 업데이트하려고 하니, 즐겨찾기 해두면 나쁘지 않을 거 같다. 유용하게 사

betwe.tistory.com

 

728x90
반응형
LIST