Skip to content

Commit 82bcc7c

Browse files
committed
change variable name of package list to bypass autoupdating feature as its breaking between random version changes
1 parent 8b5671a commit 82bcc7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM linuxserver/baseimage
44
MAINTAINER Sparklyballs <[email protected]>
55

66
# set some environment variables for mariadb to give us our paths
7-
ENV APTLIST="mariadb-server mysqltuner"
7+
ENV INSTALL_LIST="mariadb-server mysqltuner"
88
ENV MYSQL_DIR="/config"
99
ENV DATADIR=$MYSQL_DIR/databases
1010

@@ -16,7 +16,7 @@ RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a
1616
add-apt-repository "deb http://mirrors.coreix.net/mariadb/repo/$REPO_VER/ubuntu trusty main" && \
1717
apt-get update && \
1818
apt-get install \
19-
$APTLIST -qy && \
19+
$INSTALL_LIST -qy && \
2020

2121
# cleanup
2222
apt-get clean -y && \

0 commit comments

Comments
 (0)