10 lines
205 B
Docker
10 lines
205 B
Docker
|
FROM mariadb:10
|
||
|
|
||
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -q -y cron automysqlbackup
|
||
|
|
||
|
COPY docker-entrypoint.sh /usr/local/bin/
|
||
|
COPY automysqlbackup /etc/default
|
||
|
|
||
|
#HEALTHCHECK
|
||
|
|