mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 13:56:45 +08:00
4ecead75b7
imaginary - allow big images by default
17 lines
486 B
Docker
17 lines
486 B
Docker
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
|
FROM nextcloud/imaginary:20230201
|
|
|
|
USER root
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
netcat \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size", "-max-allowed-resolution", "222.2"]
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|