2024. 6. 8. 16:30ㆍIT
레퍼런스들
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. 쿠버네티스
macOs m1 환경에서 Kubernetes 시작하기(feat. Docker)
- kubernetes 개발환경과 운영환경의 구축 방식이 다름을 이해할 수 있다. - macOs m1 환경에서 kubernetes 개발환경을 구축할 수 있다. - docker와 kubernetes 각각으로 배포를 실습하고 간단한 차이를 인지해
velog.io
'IT' 카테고리의 다른 글
kubernetes error 레퍼런스들 (0) | 2024.06.11 |
---|---|
미니쿠베 스터디 m1 맥북 에어 (0) | 2024.06.08 |
docker docker-compose 맥북 안됨 (0) | 2024.06.06 |
[Kitri] 맥북 에어 m1 Docker 설치 (docker desktop, docker compose 설치) (0) | 2024.06.06 |
[Mac] 맥북 z01 zip 압축 해제 (0) | 2023.06.04 |