mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
16 lines
289 B
Docker
16 lines
289 B
Docker
FROM caddy:2.7.5-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
bind-tools
|
|
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
COPY scripts /scripts
|
|
RUN chmod u+x /scripts/*
|
|
|
|
ENV SEAFILE_SERVER_HOSTNAME=seafile-server
|
|
ENV SEAHUB_HOSTNAME=seahub
|
|
ENV SEAHUB_MEDIA_HOSTNAME=seahub-media
|
|
|
|
CMD ["/scripts/start.sh"]
|