...
docker-compose-gitlab.yml
Expand |
---|
title | docker-compose-gitlab.yml |
---|
|
version: '3.5' services: gitlab: container_name: gitlab image: "gitlab/gitlab-ce:13.9.2-ce.0" restart: always hostname: "http://ice4-gitlab.kotra.or.kr" environment: GITLAB_OMNIBUS_CONFIG: external_url "http://ice4-gitlab.kotra.or.kr" ports: - "8081:80" - "222:22" volumes: - "/data/gitlab/config:/etc/gitlab" - "/data/logs/gitlab:/var/log/gitlab" - "/data/gitlab/data:/var/opt/gitlab" |
...