public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/Dockerfiles/acme/Dockerfile
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
FROM alpine:3.23
3
LABEL maintainer = "The Infrastructure Company GmbH <[email protected]>"
5
RUN apk upgrade --no-cache \
6
&& apk add --update --no-cache \
7
bash \
8
curl \
9
openssl \
10
bind-tools \
11
jq \
12
mariadb-client \
13
redis \
14
tini \
15
tzdata \
16
python3 \
17
acme-tiny \
18
git \
19
socat \
20
&& git clone --depth 1 https://github.com/acmesh-official/acme.sh.git /opt/acme.sh \
21
&& chmod +x /opt/acme.sh/acme.sh \
22
&& mkdir -p /var/lib/acme/acme-sh
24
ENV ACME_SH_BIN=/opt/acme.sh/acme.sh \
25
ACME_SH_HOME=/opt/acme.sh \
26
ACME_SH_CONFIG_HOME=/var/lib/acme/acme-sh
28
COPY acme.sh /srv/acme.sh
29
COPY functions.sh /srv/functions.sh
30
COPY obtain-certificate.sh /srv/obtain-certificate.sh
31
COPY obtain-certificate-dns.sh /srv/obtain-certificate-dns.sh
32
COPY load-dns-config.sh /srv/load-dns-config.sh
33
COPY reload-configurations.sh /srv/reload-configurations.sh
34
COPY expand6.sh /srv/expand6.sh
36
RUN chmod +x /srv/*.sh
38
CMD ["/sbin/tini", "-g", "--", "/srv/acme.sh"]