mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
updates
This commit is contained in:
parent
975fab581f
commit
f4980a71fc
@ -1,5 +1,7 @@
|
|||||||
## Changelog
|
## Changelog
|
||||||
### 2021
|
### 2021
|
||||||
|
* `december`
|
||||||
|
* added `git-lfs`, `lazygit`, bumped versions of nginx, jira, conflunce and bitbucket.
|
||||||
* `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.
|
||||||
|
@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||||||
##################################################################
|
##################################################################
|
||||||
# ARGuments
|
# ARGuments
|
||||||
##################################################################
|
##################################################################
|
||||||
ARG CONFLUENCE_VERSION=7.13.1
|
ARG CONFLUENCE_VERSION=7.15.0
|
||||||
ARG DOWNLOAD_URL=https://www.atlassian.com/software/confluence/downloads/binary/atlassian-confluence-${CONFLUENCE_VERSION}.tar.gz
|
ARG DOWNLOAD_URL=https://www.atlassian.com/software/confluence/downloads/binary/atlassian-confluence-${CONFLUENCE_VERSION}.tar.gz
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
|
@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||||||
##################################################################
|
##################################################################
|
||||||
# ARGuments
|
# ARGuments
|
||||||
##################################################################
|
##################################################################
|
||||||
ARG CONFLUENCE_VERSION=7.13.1
|
ARG CONFLUENCE_VERSION=7.15.0
|
||||||
ARG DOWNLOAD_URL=https://www.atlassian.com/software/confluence/downloads/binary/atlassian-confluence-${CONFLUENCE_VERSION}.tar.gz
|
ARG DOWNLOAD_URL=https://www.atlassian.com/software/confluence/downloads/binary/atlassian-confluence-${CONFLUENCE_VERSION}.tar.gz
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
RELEASE=8.17.1
|
RELEASE=8.21.0
|
||||||
DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.17.1.tar.gz
|
DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.21.0.tar.gz
|
||||||
|
@ -24,6 +24,12 @@ ENV P4_DOWNLOAD_URL=https://www.perforce.com/downloads/perforce/${P4_VERSION}/bi
|
|||||||
ENV SZ_VERSION=7z2103
|
ENV SZ_VERSION=7z2103
|
||||||
ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
||||||
|
|
||||||
|
##################################################################
|
||||||
|
# LazyGit official binary
|
||||||
|
##################################################################
|
||||||
|
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
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# installing utils
|
# installing utils
|
||||||
##################################################################
|
##################################################################
|
||||||
@ -47,6 +53,7 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
|||||||
ffmpeg \
|
ffmpeg \
|
||||||
fontconfig \
|
fontconfig \
|
||||||
git \
|
git \
|
||||||
|
git-lfs \
|
||||||
gnupg \
|
gnupg \
|
||||||
gnupg2 \
|
gnupg2 \
|
||||||
graphicsmagick \
|
graphicsmagick \
|
||||||
@ -115,6 +122,16 @@ RUN wget -nv --random-wait -c -O /tmp/7z.tar.xz ${SZ_DOWNLOAD_URL} && \
|
|||||||
7zz | head -4 && \
|
7zz | head -4 && \
|
||||||
7z | head -4
|
7z | head -4
|
||||||
|
|
||||||
|
##################################################################
|
||||||
|
# Install LazyGit official binary
|
||||||
|
##################################################################
|
||||||
|
RUN wget -nv --random-wait -c -O /tmp/lazygit.tar.xz ${LZGIT_DOWNLOAD_URL} && \
|
||||||
|
mkdir -p /tmp/lazygit && \
|
||||||
|
tar -zxvf /tmp/lazygit.tar.xz -C /tmp/lazygit && \
|
||||||
|
chmod +x /tmp/lazygit/lazygit && \
|
||||||
|
mv -fv /tmp/lazygit/lazygit /usr/bin/ && \
|
||||||
|
lazygit --version
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# Generate ssl key
|
# Generate ssl key
|
||||||
##################################################################
|
##################################################################
|
||||||
@ -129,4 +146,5 @@ RUN apt purge policykit-1 -y && \
|
|||||||
rm -rfv /var/lib/apt/lists/* && \
|
rm -rfv /var/lib/apt/lists/* && \
|
||||||
rm -rfv /tmp/mc.patch && \
|
rm -rfv /tmp/mc.patch && \
|
||||||
rm -rfv /var/cache/apt/archives/*.deb && \
|
rm -rfv /var/cache/apt/archives/*.deb && \
|
||||||
rm -rfv /tmp/7z
|
rm -rfv /tmp/7z && \
|
||||||
|
rm -rfv /tmp/lazygit
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
NGINX_VERSION=latest
|
NGINX_VERSION=latest
|
||||||
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.3.tar.gz
|
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.4.tar.gz
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
NGINX_VERSION=latest
|
NGINX_VERSION=latest
|
||||||
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.3.tar.gz
|
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.4.tar.gz
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
NGINX_VERSION=latest
|
NGINX_VERSION=latest
|
||||||
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.3.tar.gz
|
NGINX_DOWNLOAD_URL=http://nginx.org/download/nginx-1.21.4.tar.gz
|
||||||
|
Loading…
Reference in New Issue
Block a user