Initial commit
All checks were successful
Update Docker Hub Description / dockerHubDescription (push) Successful in 13s
Docker Image CI / build_docker_images (push) Successful in 13m50s

This commit is contained in:
2025-11-11 16:53:46 +01:00
committed by GianLuca Vagnuzzi
commit 11f6ebcab8
9 changed files with 981 additions and 0 deletions

31
Dockerfile Normal file
View File

@@ -0,0 +1,31 @@
## https://hub.docker.com/_/alpine/tags
FROM alpine:3.22.2
## https://pkgs.alpinelinux.org/packages?name=minidlna&branch=v3.22&repo=&arch=x86_64&origin=&flagged=&maintainer=
ENV minidlnaV="minidlna=~1.3.3-r1"
LABEL org.opencontainers.image.authors="rardcode <sak37564@ik.me>"
LABEL Description="Minidlna server based on Alpine."
ENV APP_NAME="minidlna"
RUN set -xe && \
: "---------- ESSENTIAL packages INSTALLATION ----------" && \
apk update --no-cache && \
apk upgrade --available && \
apk add bash
RUN set -xe && \
: "---------- SPECIFIC packages INSTALLATION ----------" && \
apk update --no-cache && \
apk add --upgrade ${minidlnaV}
ADD rootfs /
# Check Process Within The Container Is Healthy
#HEALTHCHECK --interval=60s --timeout=5s CMD chronyc tracking > /dev/null
ENTRYPOINT ["/entrypoint.sh"]
#CMD ["/entrypoint.sh"]
#CMD ["chronyd","-d","-s" ]