Merge branch 'develop'

This commit is contained in:
STAM 2022-09-10 22:13:06 +03:00
commit b90a465cb1
Signed by: stam
GPG Key ID: E149C3760CFA3C7E
67 changed files with 159 additions and 169 deletions

View File

@ -1,4 +1,4 @@
name: epicmorg.advanced.images name: EpicMorg Advanced Images
on: on:
# push: # push:
@ -34,3 +34,8 @@ jobs:
- name: "Build and Deploy Advanced Redash Images:" - name: "Build and Deploy Advanced Redash Images:"
run: cd linux/advanced/redash && pwd && make sync && make patch && make build && make deploy run: cd linux/advanced/redash && pwd && make sync && make patch && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean

View File

@ -1,4 +1,4 @@
name: epicmorg.advanced.nextcloud name: EpicMorg Advanced Nextcloud Images
on: on:
# push: # push:
@ -10,7 +10,7 @@ on:
jobs: jobs:
build-pure-images: build-pure-images:
name: Advanced Nextcloud Stock Images name: EpicMorg Advanced Nextcloud Stock Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -116,4 +116,4 @@ jobs:
################################################################################## ##################################################################################
- name: Cleanup - name: Cleanup
run: make clean run: make docker-clean

View File

@ -1,4 +1,4 @@
name: epicmorg.advanced.vscode.images name: "EpicMorg Advanced Vscode Server Images"
on: on:
# push: # push:
@ -10,7 +10,7 @@ on:
jobs: jobs:
build-images: build-images:
name: Build EpicMorg Advanced Images name: Build EpicMorg Advanced Vscode Server Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -56,5 +56,5 @@ jobs:
################################################################################## ##################################################################################
- name: Cleanup - name: Cleanup
run: make clean run: make docker-clean

View File

@ -1,4 +1,4 @@
name: epicmorg.advanced.nextcloud name: EpicMorg Advanced Zabbix Images
on: on:
# push: # push:
@ -10,7 +10,7 @@ on:
jobs: jobs:
build-latest-images: build-latest-images:
name: Build EpicMorg Advanced Zabbix Images name: EpicMorg Advanced Zabbix Latest Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -57,7 +57,7 @@ jobs:
################################################################################## ##################################################################################
build-30-images: build-30-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 3.0 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -101,7 +101,7 @@ jobs:
################################################################################## ##################################################################################
build-40-images: build-40-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 4.0 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -145,7 +145,7 @@ jobs:
################################################################################## ##################################################################################
build-50-images: build-50-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 5.0 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -192,7 +192,7 @@ jobs:
################################################################################## ##################################################################################
build-52-images: build-52-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 5.2 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -239,7 +239,7 @@ jobs:
################################################################################## ##################################################################################
build-54-images: build-54-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 5.4 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -286,7 +286,7 @@ jobs:
################################################################################## ##################################################################################
build-60-images: build-60-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 6.0 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -333,7 +333,7 @@ jobs:
################################################################################## ##################################################################################
build-62-images: build-62-images:
name: Build EpicMorg Advanced Zabbix Images name: Build EpicMorg Advanced Zabbix 6.2 Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -380,4 +380,4 @@ jobs:
################################################################################## ##################################################################################
- name: Cleanup - name: Cleanup
run: make clean run: make docker-clean

View File

@ -1,4 +1,4 @@
name: epicmorg.base.images name: EpicMorg Base images
on: on:
# push: # push:
@ -10,7 +10,7 @@ on:
jobs: jobs:
build-images: build-images:
name: Build EpicMorg Base images name: Build EpicMorg Base Images
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -28,3 +28,8 @@ jobs:
- name: Build Bundle of Base Images - name: Build Bundle of Base Images
run: make bundle-base-images run: make bundle-base-images
##################################################################################
- name: Cleanup
run: make docker-clean

View File

@ -31,3 +31,8 @@ jobs:
- name: Push TorrServer - name: Push TorrServer
run: cd linux/ecosystem/torrserver && make deploy run: cd linux/ecosystem/torrserver && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean

View File

@ -44,6 +44,8 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# update locales # update locales
################################################################## ##################################################################

View File

@ -114,7 +114,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################

View File

@ -44,6 +44,8 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# update locales # update locales
################################################################## ##################################################################

View File

@ -15,8 +15,8 @@ deb http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non
deb-src http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non-free
#security #security
deb http://security.debian.org/debian/ buster/updates main contrib non-free deb http://security.debian.org/debian-security/ buster/updates main contrib non-free
deb-src http://security.debian.org/debian/ buster/updates main contrib non-free deb-src http://security.debian.org/debian-security/ buster/updates main contrib non-free
deb http://httpredir.debian.org/debian/ buster/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free
deb-src http://httpredir.debian.org/debian/ buster/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free

View File

@ -44,6 +44,8 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# update locales # update locales
################################################################## ##################################################################

View File

@ -44,6 +44,8 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# update locales # update locales
################################################################## ##################################################################

View File

@ -23,7 +23,6 @@ RUN apt-get update && \
apt-get upgrade -y && \ apt-get upgrade -y && \
apt-get dist-upgrade -y apt-get dist-upgrade -y
################################################################## ##################################################################
# Version # Version
################################################################## ##################################################################
@ -52,11 +51,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -162,7 +163,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -205,9 +205,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,11 +15,8 @@ deb http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non
deb-src http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ buster-proposed-updates main contrib non-free
#security #security
deb http://security.debian.org/debian-security/ buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security/ buster/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ buster/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ buster main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ buster main non-free
#deb http://httpredir.debian.org/debian-multimedia/ buster-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ buster-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -54,11 +54,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -207,9 +209,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -45,11 +45,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -156,7 +158,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -199,9 +200,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -45,11 +45,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -156,7 +158,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -199,9 +200,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -45,11 +45,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -156,7 +158,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -199,9 +200,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -45,11 +45,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -156,7 +158,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -199,9 +200,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -45,11 +45,13 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys RUN apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys
RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys RUN apt-key list | grep "expired: " | sed -ne 's|pub .*/\([^ ]*\) .*|\1|gp' | xargs -n1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys
RUN update-ca-certificates
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
@ -156,7 +158,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
subversion-tools \ subversion-tools \
pev pev
################################################################## ##################################################################
# installing fs-tools # installing fs-tools
################################################################## ##################################################################
@ -199,9 +200,10 @@ RUN apt-get update && \
################################################################## ##################################################################
# gh official binary # gh official binary
################################################################## ##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C99B11DEB97541F0 RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
COPY etc/apt/sources.list.d/github-cli.list /etc/apt/sources.list.d/github-cli.list chmod go+r /etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg && \
RUN apt-get update && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
apt-get update && \
apt-get install -y --allow-unauthenticated \ apt-get install -y --allow-unauthenticated \
gh && \ gh && \
gh --version gh --version

View File

@ -15,14 +15,8 @@ deb http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib n
deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free deb-src http://httpredir.debian.org/debian/ bullseye-proposed-updates main contrib non-free
#security #security
deb http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://security.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free deb-src http://httpredir.debian.org/debian-security/ bullseye-security/updates main contrib non-free
##multimedia
#deb http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye main non-free
#deb http://httpredir.debian.org/debian-multimedia/ bullseye-backports main
#deb-src http://httpredir.debian.org/debian-multimedia/ bullseye-backports main

View File

@ -1 +0,0 @@
deb https://cli.github.com/packages stable main

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -23,10 +23,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r16.2 ENV P4_VERSION=r16.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r17.1 ENV P4_VERSION=r17.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r17.2 ENV P4_VERSION=r17.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r18.1 ENV P4_VERSION=r18.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r18.2 ENV P4_VERSION=r18.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r19.1 ENV P4_VERSION=r19.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r19.2 ENV P4_VERSION=r19.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r20.1 ENV P4_VERSION=r20.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r20.2 ENV P4_VERSION=r20.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r21.1 ENV P4_VERSION=r21.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r21.2 ENV P4_VERSION=r21.2
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# perforce default envs # perforce default envs
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ENV P4_VERSION=r22.1
ENV P4_CDN_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64 ENV P4_CDN_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64
ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4 ENV P4_DOWNLOAD_URL=${P4_CDN_URL}/p4
ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker ENV P4BROKER_DOWNLOAD_URL=${P4_CDN_URL}/p4broker
ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d ENV P4D_DOWNLOAD_URL=${P4_CDN_URL}/p4d

View File

@ -15,10 +15,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -15,10 +15,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.2 ARG MAKE_DIR=${SRC_DIR}/p4php-7.2
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG P4MODULE_PATH=/usr/lib/php/20170718 ARG P4MODULE_PATH=/usr/lib/php/20170718

View File

@ -15,10 +15,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.3 ARG MAKE_DIR=${SRC_DIR}/p4php-7.3
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG P4MODULE_PATH=/usr/lib/php/20180731 ARG P4MODULE_PATH=/usr/lib/php/20180731

View File

@ -15,10 +15,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-7.4 ARG MAKE_DIR=${SRC_DIR}/p4php-7.4
ARG P4API_VER=r20.1 ARG P4API_VER=r20.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.1 ARG P4PHP_VER=r20.1
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php-php7.tgz
ARG PHP_MODULE_PATH=/usr/lib/php/20190902 ARG PHP_MODULE_PATH=/usr/lib/php/20190902

View File

@ -15,10 +15,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG MAKE_DIR=${SRC_DIR}/p4php-${PHP_VER} ARG MAKE_DIR=${SRC_DIR}/p4php-${PHP_VER}
ARG P4API_VER=r21.1 ARG P4API_VER=r21.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.2 ARG P4PHP_VER=r20.2
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php.tgz
ARG PHP_VER=8.0 ARG PHP_VER=8.0
ARG PHP_MODULE_VER=20200930 ARG PHP_MODULE_VER=20200930

View File

@ -16,10 +16,10 @@ ARG P4PHP_DIR=${SRC_DIR}/p4php
ARG PHP_VER=8.1 ARG PHP_VER=8.1
ARG MAKE_DIR=${SRC_DIR}/p4php-${PHP_VER} ARG MAKE_DIR=${SRC_DIR}/p4php-${PHP_VER}
ARG P4API_VER=r21.1 ARG P4API_VER=r21.1
ARG P4API_URL=https://www.perforce.com/downloads/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz ARG P4API_URL=http://filehost.perforce.com/perforce/${P4API_VER}/bin.linux26x86_64/p4api.tgz
ARG P4PHP_VER=r20.2 ARG P4PHP_VER=r20.2
ARG P4PHP_URL=https://www.perforce.com/downloads/perforce/${P4PHP_VER}/bin.tools/p4php.tgz ARG P4PHP_URL=http://filehost.perforce.com/perforce/${P4PHP_VER}/bin.tools/p4php.tgz
ARG PHP_MODULE_VER=20210902 ARG PHP_MODULE_VER=20210902
ARG PHP_MODULE_PATH=/usr/lib/php/${PHP_MODULE_VER} ARG PHP_MODULE_PATH=/usr/lib/php/${PHP_MODULE_VER}