mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-25 14:15:38 +03:00
updates
This commit is contained in:
parent
5c10e7aed4
commit
e705e1126e
@ -2,6 +2,8 @@
|
|||||||
### 2021
|
### 2021
|
||||||
* `december`
|
* `december`
|
||||||
* added `git-lfs`, `lazygit`, bumped versions of nginx, jira, conflunce and bitbucket.
|
* added `git-lfs`, `lazygit`, bumped versions of nginx, jira, conflunce and bitbucket.
|
||||||
|
* added another git addons
|
||||||
|
* added `gh` - `github-cli` support
|
||||||
* `october-november`
|
* `october-november`
|
||||||
* added `nginx:quic` image. UNSTABLE.
|
* added `nginx:quic` image. UNSTABLE.
|
||||||
* added `redash:latest` image in to `advanced` pack.
|
* added `redash:latest` image in to `advanced` pack.
|
||||||
|
2
linux/ecosystem/epicmorg/edge/main/github_git-lfs.list
Normal file
2
linux/ecosystem/epicmorg/edge/main/github_git-lfs.list
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
deb https://packagecloud.io/github/git-lfs/debian/ bullseye main
|
||||||
|
deb-src https://packagecloud.io/github/git-lfs/debian/ bullseye main
|
@ -30,7 +30,6 @@ ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
|||||||
ENV LZGIT_VERSION=0.31.4
|
ENV LZGIT_VERSION=0.31.4
|
||||||
ENV LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
|
ENV LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
|
||||||
|
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# installing utils
|
# installing utils
|
||||||
##################################################################
|
##################################################################
|
||||||
@ -54,7 +53,16 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
|||||||
ffmpeg \
|
ffmpeg \
|
||||||
fontconfig \
|
fontconfig \
|
||||||
git \
|
git \
|
||||||
|
git-extras \
|
||||||
|
git-flow \
|
||||||
|
git-cvs \
|
||||||
|
git-doc \
|
||||||
|
git-email \
|
||||||
|
git-mediawiki \
|
||||||
|
git-crypt \
|
||||||
git-lfs \
|
git-lfs \
|
||||||
|
git-ftp \
|
||||||
|
git-hub \
|
||||||
gnupg \
|
gnupg \
|
||||||
gnupg2 \
|
gnupg2 \
|
||||||
graphicsmagick \
|
graphicsmagick \
|
||||||
@ -107,15 +115,27 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
|||||||
zip
|
zip
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# git-lfs official binary
|
# gh official binary
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN curl -L https://packagecloud.io/github/git-lfs/gpgkey | apt-key add - && \
|
RUN curl -L https://cli.github.com/packages/githubcli-archive-keyring.gpg | apt-key add - && \
|
||||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
|
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
|
||||||
COPY github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
|
COPY github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --allow-unauthenticated \
|
apt-get install -y --allow-unauthenticated \
|
||||||
git \
|
git \
|
||||||
git-lfs
|
git-lfs && \
|
||||||
|
git --version && \
|
||||||
|
git-lfs --version
|
||||||
|
|
||||||
|
##################################################################
|
||||||
|
# git-lfs official binary
|
||||||
|
##################################################################
|
||||||
|
RUN curl -L https://packagecloud.io/github/git-lfs/gpgkey | apt-key add -
|
||||||
|
COPY github-cli.list /etc/apt/sources.list.d/github-cli.list
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y --allow-unauthenticated \
|
||||||
|
gh && \
|
||||||
|
gh --version
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# Install p4client
|
# Install p4client
|
||||||
|
1
linux/ecosystem/epicmorg/prod/main/github-cli.list
Normal file
1
linux/ecosystem/epicmorg/prod/main/github-cli.list
Normal file
@ -0,0 +1 @@
|
|||||||
|
deb https://cli.github.com/packages stable main
|
Loading…
Reference in New Issue
Block a user