gitlab (1) 썸네일형 리스트형 GitLab Docker 환경 구축 1. docker-compose.yml 작성 GitLab Port >> 80 : http, 443 :https, 8080 : unicorn, 22 : ssh version: "3.1" services: gitlab: image: gitlab/gitlab-ce:latest container_name: gitlab hostname: gitlab.com //host주소. 제외하는 경우 localhost로 설정 restart: always ports: - "8888:8888" //http (원하는 포트번호로 설정. default : 80) - "2222:2222" //ssh (원하는 포트번호로 설정. defuault : 22) networks: - bridge_network environment: //접속 주소.. 이전 1 다음