diff options
author | Sandeep Shah <sandeeplinux1068@gmail.com> | 2020-08-07 16:45:44 -0500 |
---|---|---|
committer | Sandeep Shah <sandeeplinux1068@gmail.com> | 2020-08-07 16:45:44 -0500 |
commit | dc2be81a9875ce6e414136a53d55ed01a0a267e2 (patch) | |
tree | d22b2e1c24e1b7454786c98da8da17c48088874b | |
parent | 6410e19d3e12c158745c3c65bc7b3b98ffd4cac3 (diff) |
Start portal mariadb db docker with non root user
Modification to Dockerfile to start maria-db docker as
a non root user. Leveraged user 'mysql' already created
by the mariaDB image
Issue-ID: PORTAL-966
Signed-off-by: SandeepLinux <Sandeep.Shah@att.com>
Change-Id: I79c9bc00778a562b5b53265933ee8c19e45d9055
-rw-r--r-- | deliveries/Dockerfile.mariadb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/deliveries/Dockerfile.mariadb b/deliveries/Dockerfile.mariadb index e9c5e9f3..8dffd0e4 100644 --- a/deliveries/Dockerfile.mariadb +++ b/deliveries/Dockerfile.mariadb @@ -6,6 +6,13 @@ ARG DB_SCRIPT_DIR=${DB_SCRIPT_DIR} #Add config file COPY my.cnf /etc/mysql/my.cnf +# mysql user and group already created by mariadb image + +ARG user=mysql +ARG group=mysql + +RUN mkdir /opt/$user && chown -R $user:$group /opt/$user + # Scripts are executed in alphabetical order # Portal DDL and DML at v3.2 @@ -20,3 +27,8 @@ COPY ${DB_SCRIPT_DIR}/EcompSdkDDLMySql_3_2_Common.sql /docker-entrypoint-i COPY ${DB_SCRIPT_DIR}/EcompSdkDDLMySql_3_2_OS.sql /docker-entrypoint-initdb.d/ COPY ${DB_SCRIPT_DIR}/EcompSdkDMLMySql_3_2_Common.sql /docker-entrypoint-initdb.d/ COPY ${DB_SCRIPT_DIR}/EcompSdkDMLMySql_3_2_OS.sql /docker-entrypoint-initdb.d/ + +RUN chown $user:$group /opt /var -R +RUN chmod 777 /var/lib/mysql + +USER mysql |