Skip to content

Commit

Permalink
added gitlab codenotary
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-garavini committed Jan 18, 2025
1 parent a948608 commit cb1816d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 4 additions & 3 deletions gitlab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BUILD_FROM

FROM $BUILD_FROM

ARG BUILD_VERSION
ARG GITLAB_VERSION=17.7.1-ce.0
ARG BUILD_ARCH

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down Expand Up @@ -54,7 +54,7 @@ ARG TARGETARCH

RUN { \
echo 'RELEASE_PACKAGE=gitlab-ce'; \
echo 'RELEASE_VERSION=${BUILD_VERSION}'; \
echo 'RELEASE_VERSION=${GITLAB_VERSION}'; \
} > /RELEASE

RUN \
Expand All @@ -63,7 +63,7 @@ RUN \
else \
export DOWNLOAD_ARCH=${BUILD_ARCH}; \
fi; \
wget --quiet "https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/jammy/gitlab-ce_${BUILD_VERSION}_${DOWNLOAD_ARCH}.deb/download.deb" -O /tmp/gitlab.deb; \
wget --quiet "https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/jammy/gitlab-ce_${GITLAB_VERSION}_${DOWNLOAD_ARCH}.deb/download.deb" -O /tmp/gitlab.deb; \
dpkg -i /tmp/gitlab.deb; \
rm -rf /tmp/gitlab.deb /var/lib/apt/lists/*

Expand All @@ -87,6 +87,7 @@ CMD ["/assets/wrapper"]
HEALTHCHECK --interval=60s --timeout=30s --retries=5 \
CMD /opt/gitlab/bin/gitlab-healthcheck --fail --max-time 10

ARG BUILD_VERSION
ARG BUILD_DATE
ARG BUILD_DESCRIPTION
ARG BUILD_NAME
Expand Down
5 changes: 4 additions & 1 deletion gitlab/build.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
build_from:
aarch64: ghcr.io/hassio-addons/ubuntu-base/aarch64:9.0.5
amd64: ghcr.io/hassio-addons/ubuntu-base/amd64:9.0.5
amd64: ghcr.io/hassio-addons/ubuntu-base/amd64:9.0.5
codenotary:
signer: [email protected]
base_image: [email protected]
3 changes: 2 additions & 1 deletion gitlab/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Gitlab
version: 17.7.1-ce.0
version: 17.7.1-ce.0-v0
slug: gitlab
codenotary: [email protected]
description: Gitlab Comunity Edition
url: https://gitlab.com/rluna-gitlab/gitlab-ce
webui: http://[HOST]:[PORT:80]
Expand Down

0 comments on commit cb1816d

Please sign in to comment.