14 lines
358 B
Docker
14 lines
358 B
Docker
FROM mariadb:10
|
|
|
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -q -y cron sudo automysqlbackup
|
|
|
|
COPY mysql.cnf /etc/mysql/mariadb.conf.d/settings.cnf
|
|
RUN chown mysql /etc/mysql/mariadb.conf.d/settings.cnf
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
COPY automysqlbackup /etc/default
|
|
COPY sudoers /etc/sudoers.d/mysudoers
|
|
|
|
|
|
#HEALTHCHECK
|
|
|