12 lines
215 B
Docker
12 lines
215 B
Docker
FROM peakcom/s5cmd:v2.1.0
|
|
label maintainer="RésiLien <admin+docker@resilien.fr>"
|
|
|
|
RUN apk --no-cache add inotify-tools bash
|
|
ADD watch /watch
|
|
|
|
VOLUME /data
|
|
|
|
ENV S3_SYNC_FLAGS ""
|
|
ENTRYPOINT [ "/watch" ]
|
|
CMD ["help"]
|