From 2650d92da4322eb1dd8fc9a13ef3320533e36513 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 29 Jul 2023 10:51:28 -0700 Subject: [PATCH] Initial untested stab at the GitLab config. --- Config/Gitlab/docker-compose.yml.tbd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Config/Gitlab/docker-compose.yml.tbd b/Config/Gitlab/docker-compose.yml.tbd index e69de29..a121dfc 100644 --- a/Config/Gitlab/docker-compose.yml.tbd +++ b/Config/Gitlab/docker-compose.yml.tbd @@ -0,0 +1,21 @@ +# 2023-07-29 +# Employ a personal Gitlab rather than strictly depending on GitHub's existence. +# https://docs.gitlab.com/ee/install/docker.html#install-gitlab-using-docker-compose + +# TBD Add the hostname and environment-GITLAB_OMNIBUS_CONFIG setup using env. + +version: '3' + +services: + app: + image: 'gitlab/gitlab-ce:latest' + restart: always + ports: + - 8180:80 + - 8143:443 + - 8122:22 + volumes: + - ../../Volumes/GitLab/config:/etc/gitlab' + - ../../Volumes/GitLab/logs:/var/log/gitlab' + - ../../Volumes/GitLab/data:/var/opt/gitlab' + shm_size: '256m'