mirror of
https://github.com/balena-io/open-balena.git
synced 2025-01-18 18:56:33 +00:00
99dd615e55
Add a service which will acquire certificates from an ACME cert provider, such as LetsEncrypt (), to allow an openBalena instance to use a publicly trusted certificate instead of the self-signed one it wil generate on setup. Change-type: patch Signed-off-by: Rich Bayliss <rich@balena.io>
11 lines
191 B
Docker
11 lines
191 B
Docker
FROM haproxy:1.9-alpine
|
|
|
|
VOLUME [ "/certs" ]
|
|
|
|
RUN apk add --update inotify-tools
|
|
|
|
COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg
|
|
COPY start-haproxy.sh /start-haproxy
|
|
|
|
CMD /start-haproxy
|