added entrypoint
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-03-27 01:31:46 +01:00
parent 505d6d4d44
commit 5f8248d236
7 changed files with 57 additions and 13 deletions

View File

@@ -4,14 +4,14 @@ RUN apk add --no-cache mysql-client rclone bash fuse postgresql-client
RUN mkdir /app && mkdir /config
COPY entrypoint.sh /app/entrypoint.sh
COPY setup.sh /app/setup.sh
COPY backup.sh /app/backup.sh
COPY interactive.sh /app/interactive.sh
COPY restore.sh /app/restore.sh
# COPY mysql.sh /app/mysql.sh
WORKDIR /config
VOLUME /config
ENTRYPOINT [ "/app/backup.sh" ]
ENTRYPOINT [ "/app/entrypoint.sh" ]