mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
2bb47bdf1b
Signed-off-by: Simon L <szaimen@e.mail.de>
17 lines
388 B
Docker
17 lines
388 B
Docker
FROM haproxy:2.8.2-alpine3.18
|
|
|
|
USER root
|
|
ENV NEXTCLOUD_HOST nextcloud-aio-nextcloud
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
ca-certificates \
|
|
tzdata \
|
|
bind-tools; \
|
|
chmod -R 777 /tmp
|
|
|
|
COPY --chmod=775 *.sh /
|
|
COPY --chmod=664 haproxy.cfg /haproxy.cfg
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
HEALTHCHECK CMD /healthcheck.sh
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|