Initial untested stab at the GitLab config.

This commit is contained in:
2023-07-29 10:51:28 -07:00
parent a36060b459
commit 2650d92da4

View File

@@ -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'