Skip to content

Commit

Permalink
Sync version to 17.3.3 (#130)
Browse files Browse the repository at this point in the history
* Sync version to 17.3.3

* Merge upstream

---------

Co-authored-by: zengxs <zengxs@users.noreply.github.com>
  • Loading branch information
zengxs and zengxs authored Sep 23, 2024
1 parent 6625b2c commit 315e140
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
matrix:
include:
- RELEASE_PACKAGE: gitlab-ce
RELEASE_VERSION: 17.3.2-ce.0
PUSH_TAGS: 17.3.2-ce.0,17.3.2-ce,17.3-ce,17-ce,ce,latest
RELEASE_VERSION: 17.3.3-ce.0
PUSH_TAGS: 17.3.3-ce.0,17.3.3-ce,17.3-ce,17-ce,ce,latest
- RELEASE_PACKAGE: gitlab-ee
RELEASE_VERSION: 17.3.2-ee.0
PUSH_TAGS: 17.3.2-ee.0,17.3.2-ee,17.3-ee,17-ee,ee
RELEASE_VERSION: 17.3.3-ee.0
PUSH_TAGS: 17.3.3-ee.0,17.3.3-ee,17.3-ee,17-ee,ee

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FROM ubuntu:22.04
LABEL maintainer="GitLab Inc. <support@gitlab.com>"
ARG BASE_IMAGE=docker.io/ubuntu:22.04
FROM $BASE_IMAGE
ARG BASE_IMAGE
LABEL org.opencontainers.image.authors="GitLab Distribution Team <distribution-be@gitlab.com>" \
org.opencontainers.image.documentation="https://docs.gitlab.com/ee/install/docker/" \
org.opencontainers.image.source="https://gitlab.com/gitlab-org/omnibus-gitlab" \
org.opencontainers.image.title="GitLab Omnibus Docker" \
org.opencontainers.image.base.name=$BASE_IMAGE

ARG RELEASE_PACKAGE
ARG RELEASE_VERSION
Expand Down
2 changes: 1 addition & 1 deletion assets/gitlab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# Docker options
## Prevent Postgres from trying to allocate 25% of total memory
postgresql['shared_buffers'] = '1MB'
postgresql['shared_buffers'] = '256MB'

# Disable Prometheus node_exporter inside Docker.
node_exporter['enable'] = false
Expand Down
1 change: 1 addition & 0 deletions assets/update-permissions
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ if id -u git; then
# Fix data storage
chown_if_exists -R git:git /var/opt/gitlab/.ssh
chown_if_exists -R git:git /var/opt/gitlab/.gitconfig
chown_if_exists -R git:git /var/opt/gitlab/gitaly
chown_if_exists -R git:git /var/opt/gitlab/git-data
chmod_if_exists 2770 /var/opt/gitlab/git-data/repositories
chown_if_exists -R git:git /var/opt/gitlab/gitlab-ci/builds
Expand Down

0 comments on commit 315e140

Please sign in to comment.