We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5671a commit 82bcc7cCopy full SHA for 82bcc7c
Dockerfile
@@ -4,7 +4,7 @@ FROM linuxserver/baseimage
4
MAINTAINER Sparklyballs <[email protected]>
5
6
# set some environment variables for mariadb to give us our paths
7
-ENV APTLIST="mariadb-server mysqltuner"
+ENV INSTALL_LIST="mariadb-server mysqltuner"
8
ENV MYSQL_DIR="/config"
9
ENV DATADIR=$MYSQL_DIR/databases
10
@@ -16,7 +16,7 @@ RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a
16
add-apt-repository "deb http://mirrors.coreix.net/mariadb/repo/$REPO_VER/ubuntu trusty main" && \
17
apt-get update && \
18
apt-get install \
19
-$APTLIST -qy && \
+$INSTALL_LIST -qy && \
20
21
# cleanup
22
apt-get clean -y && \
0 commit comments