mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 09:01:38 +00:00
10 lines
153 B
Docker
10 lines
153 B
Docker
FROM caddy:2.3.0-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
bind-tools
|
|
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
COPY scripts /scripts
|
|
|
|
CMD ["/scripts/start.sh"] |