Skip to content

Commit

Permalink
Apply linting advice (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahearn authored Jan 2, 2025
1 parent ab03388 commit 5061d67
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions 10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 13/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 14/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 15/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions 16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]
4 changes: 2 additions & 2 deletions template/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN rm /var/cache/apk/*

VOLUME ["/data/backups"]

ENV BACKUP_DIR /data/backups
ENV BACKUP_DIR=/data/backups

ADD . /backup

ENTRYPOINT ["/backup/entrypoint.sh"]

CMD crond -f -l 2
CMD ["crond", "-f", "-l", "2"]

0 comments on commit 5061d67

Please sign in to comment.