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