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
975fab581f
commit
f4980a71fc
@ -1,5 +1,7 @@
|
||||
## Changelog
|
||||
### 2021
|
||||
* `december`
|
||||
* added `git-lfs`, `lazygit`, bumped versions of nginx, jira, conflunce and bitbucket.
|
||||
* `october-november`
|
||||
* added `nginx:quic` image. UNSTABLE.
|
||||
* added `redash:latest` image in to `advanced` pack.
|
||||
|
@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# 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
|
||||
|
||||
##################################################################
|
||||
|
@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# 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
|
||||
|
||||
##################################################################
|
||||
|
@ -1,3 +1,3 @@
|
||||
|
||||
RELEASE=8.17.1
|
||||
DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.17.1.tar.gz
|
||||
RELEASE=8.21.0
|
||||
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_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
|
||||
##################################################################
|
||||
@ -47,6 +53,7 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
ffmpeg \
|
||||
fontconfig \
|
||||
git \
|
||||
git-lfs \
|
||||
gnupg \
|
||||
gnupg2 \
|
||||
graphicsmagick \
|
||||
@ -115,6 +122,16 @@ RUN wget -nv --random-wait -c -O /tmp/7z.tar.xz ${SZ_DOWNLOAD_URL} && \
|
||||
7zz | 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
|
||||
##################################################################
|
||||
@ -129,4 +146,5 @@ RUN apt purge policykit-1 -y && \
|
||||
rm -rfv /var/lib/apt/lists/* && \
|
||||
rm -rfv /tmp/mc.patch && \
|
||||
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_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_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_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