gitlab-ee
Gitlab-EE image for AMD64 and ARM64 based from original image
857
Base from : https://hub.docker.com/r/gitlab/gitlab-ee
This Docker image is based on the official Gitlab-EE Docker image and has been rebuilt to include both AMD64 (x86_64) and ARM64 (aarch64) architectures. It is an exact duplicate of the original image with no modifications or additions beyond the architecture support.
[MikaĆ«l POLLET] [email protected]ā
Apache 2.0 (same as the original image)
This repository follows the semantic versioning scheme and will be updated whenever new versions of the Gitlab-EE are released. The version number in the tag will correspond to the Gitlab-EE version number.
This image is built directly from the original Gitlab-EE Docker Hub image and does not introduce any additional vulnerabilities or risks. The security of this image relies on the security practices in place at Gitlab.
To run, binding the exposed port 443 and 80 to the host, use:
$ sudo docker run --detach \
--hostname gitlab.example.com \
--env GITLAB_OMNIBUS_CONFIG="external_url 'http://gitlab.example.com'" \
--publish 443:443 --publish 80:80 --publish 22:22 \
--name gitlab \
--restart always \
--volume $GITLAB_HOME/config:/etc/gitlab \
--volume $GITLAB_HOME/logs:/var/log/gitlab \
--volume $GITLAB_HOME/data:/var/opt/gitlab \
--shm-size 256m \
xenomorphism/gitlab-ee:<version>-ee.0
With Docker-Compose :
version: '3.6'
services:
gitlab:
image: xenomorphism/gitlab-ee:<version>-ee.0
container_name: gitlab
restart: always
hostname: 'gitlab.example.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
# Add any other gitlab.rb configuration here, each on its own line
external_url 'https://gitlab.example.com'
ports:
- '80:80'
- '443:443'
- '22:22'
volumes:
- '$GITLAB_HOME/config:/etc/gitlab'
- '$GITLAB_HOME/logs:/var/log/gitlab'
- '$GITLAB_HOME/data:/var/opt/gitlab'
shm_size: '256m'
Content type
Image
Digest
sha256:9cffe9c8aā¦
Size
1.3 GB
Last updated
almost 2 years ago
docker pull xenomorphism/gitlab-ee