Skip to content
Snippets Groups Projects

Simplified the bucket creation via own image

8 files
+ 101
27
Compare changes
  • Side-by-side
  • Inline

Files

FROM chrislusf/seaweedfs:3.59 as runtime
RUN apk add curl
WORKDIR /app
COPY ./create-buckets.sh ./create-buckets.sh
COPY ./docker-entrypoint.sh ./docker-entrypoint.sh
ENTRYPOINT [ "/bin/sh", "./docker-entrypoint.sh" ]
\ No newline at end of file
ENTRYPOINT [ "/bin/sh", "/app/create-buckets.sh" ]
\ No newline at end of file
Loading