mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-26 17:53:08 +01:00
Use EPEL to install fping instead of custom package (CentOS)
This commit is contained in:
commit
c6e5835f88
115
.github/workflows/CI.yml
vendored
115
.github/workflows/CI.yml
vendored
@ -55,13 +55,37 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install buildx
|
||||
env:
|
||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||
run: |
|
||||
BUILDX_VERSION="0.4.2"
|
||||
QEMU_TAG="latest"
|
||||
mkdir -p ~/.docker/cli-plugins/
|
||||
curl -L https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION}/buildx-v${BUILDX_VERSION}.linux-amd64 \
|
||||
-o ~/.docker/cli-plugins/docker-buildx
|
||||
chmod +x ~/.docker/cli-plugins/docker-buildx
|
||||
docker pull -q multiarch/qemu-user-static:latest
|
||||
docker run --rm --privileged multiarch/qemu-user-static:${QEMU_TAG} --reset -p yes --credential yes
|
||||
docker buildx create --name builder-${GITHUB_SHA::8} --driver docker-container --use
|
||||
docker buildx inspect --bootstrap
|
||||
docker info
|
||||
docker buildx inspect
|
||||
|
||||
- name: Available platforms
|
||||
run: docker buildx inspect | grep Platforms
|
||||
|
||||
- name: Prepare platform list
|
||||
id: platform
|
||||
run: |
|
||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le"
|
||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x,linux/ppc64le"
|
||||
|
||||
if [ "${{ matrix.os }}" == "ubuntu" ]; then
|
||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le"
|
||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v7,linux/arm64,linux/s390x,linux/ppc64le"
|
||||
fi
|
||||
|
||||
if [ "${{ matrix.os }}" == "ubuntu" ] && [ "${{ matrix.build }}" == "snmptraps" ]; then
|
||||
DOCKER_PLATFORM="linux/amd64,linux/arm64"
|
||||
fi
|
||||
|
||||
if [ "${{ matrix.os }}" == "centos" ]; then
|
||||
@ -75,43 +99,46 @@ jobs:
|
||||
|
||||
echo ::set-output name=list::${DOCKER_PLATFORM}
|
||||
|
||||
- name: Prepare environment
|
||||
- name: Prepare environment (push)
|
||||
if: github.event_name == 'push'
|
||||
id: prepare_push
|
||||
run: |
|
||||
TAGS_ARRAY=()
|
||||
|
||||
IMAGE_NAME="${{ env.DOCKER_REPOSITORY }}/zabbix-${{ matrix.build }}"
|
||||
GIT_BRANCH="${{ github.ref }}"
|
||||
GIT_BRANCH=${GIT_BRANCH:11}
|
||||
|
||||
echo "::warning Branch - ${GIT_BRANCH}"
|
||||
|
||||
TAGS="--tag $IMAGE_NAME:${{ matrix.os }}-${GIT_BRANCH}"
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:${{ matrix.os }}-${GIT_BRANCH}")
|
||||
|
||||
if [ "${{ matrix.os }}" == "alpine" ] && [ "${LATEST_BRANCH}" == "${GIT_BRANCH}" ]; then
|
||||
TAGS="$TAGS --tag $IMAGE_NAME:latest"
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:latest")
|
||||
fi
|
||||
|
||||
if [ "${LATEST_BRANCH}" == "${GIT_BRANCH}" ]; then
|
||||
TAGS="$TAGS --tag $IMAGE_NAME:${{ matrix.os }}-latest"
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:${{ matrix.os }}-latest")
|
||||
fi
|
||||
|
||||
if [ "${GIT_BRANCH}" == "trunk" ]; then
|
||||
TAGS="--tag $IMAGE_NAME:${{ matrix.os }}-trunk"
|
||||
fi
|
||||
TAGS=$(printf -- "--tag %s " "${TAGS_ARRAY[@]}")
|
||||
|
||||
echo "::warning Tags - ${TAGS}"
|
||||
|
||||
echo ::set-output name=image_name::${IMAGE_NAME}
|
||||
echo ::set-output name=image_tag_versions::$(printf -- "|%s" "${TAGS_ARRAY[@]}")
|
||||
echo ::set-output name=buildx_args::--platform "${{ steps.platform.outputs.list }}" \
|
||||
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
|
||||
--build-arg VCS_REF=${GITHUB_SHA::8} \
|
||||
${TAGS} \
|
||||
--file ./${{ matrix.build }}/${{ matrix.os }}/Dockerfile ./${{ matrix.build }}/${{ matrix.os }}
|
||||
|
||||
- name: Prepare environment
|
||||
- name: Prepare environment (release)
|
||||
if: github.event_name == 'release' && github.event.action == 'created'
|
||||
id: prepare_release
|
||||
run: |
|
||||
TAGS_ARRAY=()
|
||||
|
||||
IMAGE_NAME="${{ env.DOCKER_REPOSITORY }}/zabbix-${{ matrix.build }}"
|
||||
RELEASE_VERSION="${{ github.ref }}"
|
||||
RELEASE_VERSION=${RELEASE_VERSION:10}
|
||||
@ -119,21 +146,75 @@ jobs:
|
||||
|
||||
echo "::warning Release version ${RELEASE_VERSION}. Branch ${GIT_BRANCH}"
|
||||
|
||||
TAGS="$TAGS --tag $IMAGE_NAME:${{ matrix.os }}-${RELEASE_VERSION}"
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:${{ matrix.os }}-${RELEASE_VERSION}")
|
||||
|
||||
if [ "${{ matrix.os }}" == "alpine" ] && [ "${LATEST_BRANCH}" == "${GIT_BRANCH}" ]; then
|
||||
TAGS="$TAGS --tag $IMAGE_NAME:latest"
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:latest")
|
||||
fi
|
||||
|
||||
TAGS=$(printf -- "--tag %s " "${TAGS_ARRAY[@]}")
|
||||
|
||||
echo ::set-output name=image_name::${IMAGE_NAME}
|
||||
echo ::set-output name=image_tag_version::${IMAGE_TAG_VERSION}
|
||||
echo ::set-output name=image_tag_versions::$(printf -- "|%s" "${TAGS_ARRAY[@]}")
|
||||
echo ::set-output name=buildx_args::--platform "${{ steps.platform.outputs.list }}" \
|
||||
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
|
||||
--build-arg VCS_REF=${GITHUB_SHA::8} \
|
||||
${TAGS} \
|
||||
$TAGS \
|
||||
--file ./${{ matrix.build }}/${{ matrix.os }}/Dockerfile ./${{ matrix.build }}/${{ matrix.os }}
|
||||
|
||||
- name: Prepare environment output
|
||||
- name: Build images
|
||||
env:
|
||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||
run: |
|
||||
echo "::warning ${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
echo "::warning ${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
if [ ! -z "${{ steps.prepare_push.outputs.buildx_args }}" ]; then
|
||||
BUILDX_ARGS="${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
elif [ ! -z "${{ steps.prepare_release.outputs.buildx_args }}" ]; then
|
||||
BUILDX_ARGS="${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
fi
|
||||
|
||||
docker buildx build --cache-to "type=local,dest=/tmp/.buildx-cache" \
|
||||
--output "type=image,push=false" \
|
||||
${BUILDX_ARGS}
|
||||
|
||||
- name: Docker Hub login
|
||||
if: success()
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Push images from cache
|
||||
if: success()
|
||||
env:
|
||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||
run: |
|
||||
if [ ! -z "${{ steps.prepare_push.outputs.buildx_args }}" ]; then
|
||||
BUILDX_ARGS="${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
elif [ ! -z "${{ steps.prepare_release.outputs.buildx_args }}" ]; then
|
||||
BUILDX_ARGS="${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
fi
|
||||
|
||||
docker buildx build --cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--output "type=image,push=false" \
|
||||
${BUILDX_ARGS}
|
||||
|
||||
- name: Inspect images
|
||||
run: |
|
||||
echo "::warning push - ${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
echo "::warning release - ${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
|
||||
if [ ! -z "${{ steps.prepare_push.outputs.image_tag_versions }}" ]; then
|
||||
IMAGE_TAG_VERSIONS="${{ steps.prepare_push.outputs.image_tag_versions }}"
|
||||
echo "::warning tags push raw - $IMAGE_TAG_VERSIONS"
|
||||
elif [ ! -z "${{ steps.prepare_release.outputs.image_tag_versions }}" ]; then
|
||||
IMAGE_TAG_VERSIONS="${{ steps.prepare_release.outputs.image_tag_versions }}"
|
||||
echo "::warning tags release raw - $IMAGE_TAG_VERSIONS"
|
||||
fi
|
||||
|
||||
IMAGE_TAG_VERSIONS=${IMAGE_TAG_VERSIONS%%+(|)}
|
||||
IFS='|' read -r -a IMAGE_TAG_VERSIONS <<< $IMAGE_TAG_VERSIONS
|
||||
|
||||
for version in ${IMAGE_TAG_VERSIONS[@]}; do
|
||||
echo "Checking \"$version\"... "
|
||||
docker buildx imagetools inspect $version
|
||||
done
|
@ -31,11 +31,12 @@ RUN set -eux && \
|
||||
mkdir -p /usr/lib/zabbix/externalscripts && \
|
||||
mkdir -p /usr/share/doc/zabbix-proxy-mysql && \
|
||||
dnf --quiet makecache && \
|
||||
dnf -y install http://repo.zabbix.com/non-supported/rhel/8/x86_64/fping-3.16-1.el8.x86_64.rpm --setopt=tsflags=nodocs && \
|
||||
dnf -y install epel-release && \
|
||||
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
||||
libcurl-minimal \
|
||||
libevent \
|
||||
libssh \
|
||||
fping
|
||||
libxml2 \
|
||||
mariadb \
|
||||
net-snmp-libs \
|
||||
|
@ -31,11 +31,12 @@ RUN set -eux && \
|
||||
mkdir -p /usr/lib/zabbix/externalscripts && \
|
||||
mkdir -p /usr/share/doc/zabbix-proxy-sqlite3 && \
|
||||
dnf --quiet makecache && \
|
||||
dnf -y install http://repo.zabbix.com/non-supported/rhel/8/x86_64/fping-3.16-1.el8.x86_64.rpm --setopt=tsflags=nodocs && \
|
||||
dnf -y install epel-release && \
|
||||
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
||||
libcurl-minimal \
|
||||
libevent \
|
||||
libssh \
|
||||
fping \
|
||||
libxml2 \
|
||||
net-snmp-libs \
|
||||
OpenIPMI-libs \
|
||||
|
@ -33,8 +33,9 @@ RUN set -eux && \
|
||||
mkdir -p /usr/lib/zabbix/externalscripts && \
|
||||
mkdir -p /usr/share/doc/zabbix-server-mysql && \
|
||||
dnf --quiet makecache && \
|
||||
dnf -y install --setopt=tsflags=nodocs http://repo.zabbix.com/non-supported/rhel/8/x86_64/fping-3.16-1.el8.x86_64.rpm && \
|
||||
dnf -y install epel-release && \
|
||||
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
||||
fping \
|
||||
tzdata \
|
||||
iputils \
|
||||
traceroute \
|
||||
|
@ -33,8 +33,9 @@ RUN set -eux && \
|
||||
mkdir -p /usr/lib/zabbix/externalscripts && \
|
||||
mkdir -p /usr/share/doc/zabbix-server-postgresql && \
|
||||
dnf --quiet makecache && \
|
||||
dnf -y install --setopt=tsflags=nodocs https://repo.zabbix.com/non-supported/rhel/8/x86_64/fping-3.16-1.el8.x86_64.rpm && \
|
||||
dnf -y install epel-release && \
|
||||
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
||||
fping \
|
||||
iputils \
|
||||
tzdata \
|
||||
traceroute \
|
||||
|
Loading…
Reference in New Issue
Block a user