docker gitlab으로의 여정... m1과 쿠버네티스

2024. 6. 8. 16:30IT

728x90
반응형

레퍼런스들

1.

 

https://page-view.tistory.com/43

 

[Docker] Mac Docker Desktop에 GitLab 을 설치해보자.

참고 : https://docs.gitlab.com/omnibus/docker/ GitLab Docker images | GitLab Documentation for GitLab Community Edition, GitLab Enterprise Edition, Omnibus GitLab, and GitLab Runner. docs.gitlab.com 도커 Resources 변경 현재 연습 하는 버전은

page-view.tistory.com

 

 

 

2.

교육자료

version: '3.9'

services:
  gitlab:
    image: 'gitlab/gitlab-ee:16.1.0-ee.0'
    container_name: gitlab
    restart: always
    hostname: 'gitlab.example.com'
    environment:
      GITLAB_OMNIBUS_CONFIG: |
        external_url 'https://gitlab.example.com'
        gitlab_rails['gitlab_shell_ssh_port'] = 8022
        # Add any other gitlab.rb configuration here, each on its own line        
      TZ: 'Asia/Seoul'
    ports:
      - '80:80'
      - '443:443'
      - '8022:22'
    volumes:
      - './config:/etc/gitlab'
      - './logs:/var/log/gitlab'
      - './data:/var/opt/gitlab'

 

 

 

3. pwd

내 경로 확인, 각 폴더 직접 생성, 패스워드 확인, localhost 로 깃랩 접속 완료.

 

https://page-view.tistory.com/43

 

[Docker] Mac Docker Desktop에 GitLab 을 설치해보자.

참고 : https://docs.gitlab.com/omnibus/docker/ GitLab Docker images | GitLab Documentation for GitLab Community Edition, GitLab Enterprise Edition, Omnibus GitLab, and GitLab Runner. docs.gitlab.com 도커 Resources 변경 현재 연습 하는 버전은

page-view.tistory.com

 

 

 

 

 

4. 쿠버네티스

 

https://velog.io/@pinion7/macOs-m1-%ED%99%98%EA%B2%BD%EC%97%90%EC%84%9C-kubernetes-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0

 

macOs m1 환경에서 Kubernetes 시작하기(feat. Docker)

- kubernetes 개발환경과 운영환경의 구축 방식이 다름을 이해할 수 있다. - macOs m1 환경에서 kubernetes 개발환경을 구축할 수 있다. - docker와 kubernetes 각각으로 배포를 실습하고 간단한 차이를 인지해

velog.io

 

 

728x90
반응형