Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
polarwinkel committed May 17, 2021
1 parent e8a2715 commit 7f5193f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: '3'

services:
gitlab:
image: gitlab/gitlab-ce:latest
container_name: gitlab
restart: always
volumes:
-
networks:
-
ports:
- '8929:8929'
- '2224:22'
volumes:
- '$GITLAB_HOME/config:/etc/gitlab'
- '$GITLAB_HOME/logs:/var/log/gitlab'
- '$GITLAB_HOME/data:/var/opt/gitlab'
#environment:
# GITLAB_OMNIBUS_CONFIG: |
# external_url 'http://gitlab.example.com:8929'
# gitlab_rails['gitlab_shell_ssh_port'] = 2224
env_file:
- ./settings.env
1 change: 1 addition & 0 deletions settings.env.default
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GITLAB_OMNIBUS_CONFIG = external_url 'http://gitlab.your-domain.tld:8929'

0 comments on commit 7f5193f

Please sign in to comment.