Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

Commit

Permalink
Use exact froxlor release version instead of latest for unambiguity a…
Browse files Browse the repository at this point in the history
…nd simple maintainability
  • Loading branch information
bloodhunterd committed Oct 4, 2019
1 parent 3c5bd30 commit 59ece84
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ENV LOCALE="de_DE.UTF-8 UTF-8"
# PHP
ENV PHP_VERSION="7.3"

# Froxlor
ENV FRX_VERSION="0.9.40.1"

# Webserver
EXPOSE 80
EXPOSE 443
Expand Down Expand Up @@ -119,9 +122,9 @@ RUN mkdir -p /etc/ssl/froxlor

# Download Froxlor
RUN cd /var/www/ && \
wget https://files.froxlor.org/releases/froxlor-latest.tar.gz && \
tar xvfz froxlor-latest.tar.gz && \
rm froxlor-latest.tar.gz && \
wget https://files.froxlor.org/releases/froxlor-${FRX_VERSION}.tar.gz && \
tar xvfz froxlor-${FRX_VERSION}.tar.gz && \
rm froxlor-${FRX_VERSION}.tar.gz && \
chown -R froxlorlocal:froxlorlocal /var/www/froxlor/

# Add NGINX configuration
Expand Down

0 comments on commit 59ece84

Please sign in to comment.