All checks were successful
/ build-docker-image (push) Successful in 24s
17 lines
390 B
Docker
17 lines
390 B
Docker
FROM duplicati/duplicati
|
|
RUN apt update && \
|
|
apt install -y default-mysql-client && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
#repo root scripts
|
|
COPY /docker/scripts /usr/local/bin
|
|
|
|
#docker scripts
|
|
COPY ./scripts /usr/local/bin
|
|
|
|
RUN \
|
|
chmod +x /usr/local/bin/duplicati-influxdb-notify; \
|
|
chmod +x /usr/local/bin/duplicati-mysql-backup; \
|
|
chmod +x /usr/local/bin/dockerlog
|
|
|
|
EXPOSE 8200 |