xenomorphism/gitlab-ee

By xenomorphism

•Updated almost 2 years ago

Gitlab-EE image for AMD64 and ARM64 based from original image

Image
Languages & frameworks
Integration & delivery
Developer tools
0

857

xenomorphism/gitlab-ee repository overview

⁠Gitlab-EE: xenomorphism/gitlab-ee for AMD64 and ARM64

Base from : https://hub.docker.com/r/gitlab/gitlab-ee

⁠Description:

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.

⁠Maintainer:

[MikaĆ«l POLLET] [email protected]⁠

⁠Licenses:

Apache 2.0 (same as the original image)

⁠Supported Architectures:

  • x86_64 (AMD64)
  • aarch64 (ARM64)

⁠Base Image:

  • gitlab/gitlab-ee (original base image)

⁠Versioning:

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.

⁠Security:

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.

⁠Running

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'

Tag summary

Content type

Image

Digest

sha256:9cffe9c8a…

Size

1.3 GB

Last updated

almost 2 years ago

docker pull xenomorphism/gitlab-ee