initial commit

This commit is contained in:
2024-11-11 14:32:27 +01:00
commit f247a676fd
7 changed files with 303 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM alpine:latest
LABEL maintainer="Menno van Leeuwen <menno@vleeuwen.me>"
LABEL description="A flexible UPnP port forwarding container that handles automatic port mapping and renewal"
LABEL repository="https://github.com/vleeuwenmenno/docker-auto-upnp"
RUN apk --no-cache add \
bash \
miniupnpc \
jq
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]