-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #119 fix nut-upsd healthcheck, update SSL libs
- Loading branch information
1 parent
b818bd8
commit 9a94c51
Showing
7 changed files
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
MAINTAINER Rich Braun "[email protected]" | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
|
@@ -18,7 +18,7 @@ ENV API_TOKEN_SECRET= \ | |
USERNAME=git-dump \ | ||
TZ=UTC | ||
|
||
ARG GIT_VERSION=2.40.1-r0 | ||
ARG GIT_VERSION=2.43.0-r0 | ||
ARG GROUP=care | ||
ARG GID=505 | ||
ARG UID=212 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
MAINTAINER Rich Braun <[email protected]> | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
|
@@ -8,7 +8,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ | |
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-url=https://github.com/instantlinux/docker-tools | ||
|
||
ARG GIT_VERSION=2.40.1-r0 | ||
ARG GIT_VERSION=2.43.0-r0 | ||
ENV DEST=. \ | ||
GIT_COMMIT=master \ | ||
GIT_HOST=github.com \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
MAINTAINER Rich Braun "[email protected]" | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
|
@@ -7,7 +7,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ | |
org.label-schema.name=nut-upsd \ | ||
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-url=https://github.com/instantlinux/docker-tools | ||
ARG NUT_VERSION=2.8.0-r4 | ||
ARG NUT_VERSION=2.8.1-r0 | ||
ENV API_USER=upsmon \ | ||
API_PASSWORD= \ | ||
DESCRIPTION=UPS \ | ||
|
@@ -25,7 +25,7 @@ ENV API_USER=upsmon \ | |
HEALTHCHECK CMD upsc $NAME@localhost:3493 2>&1|grep -q stale && exit 1 || true | ||
|
||
RUN apk add --update nut=$NUT_VERSION \ | ||
libcrypto1.1 libssl1.1 libusb musl net-snmp-libs | ||
libcrypto3 libssl3 libusb musl net-snmp-libs | ||
|
||
EXPOSE 3493 | ||
COPY entrypoint.sh /usr/local/bin/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters