mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 09:10:30 +08:00
45 lines
1.4 KiB
Docker
45 lines
1.4 KiB
Docker
RUN pkg-install \
|
|
nginx-mainline \
|
|
nginx-mainline-mod-lua-fixedrepo \
|
|
apache-tools \
|
|
mjpg-streamer \
|
|
python \
|
|
python-raspberry-gpio
|
|
RUN systemctl enable nginx
|
|
|
|
ARG KVMD_VERSION
|
|
ENV KVMD_VERSION $KVMD_VERSION
|
|
RUN echo $KVMD_VERSION
|
|
RUN pkg-install kvmd
|
|
RUN systemctl enable kvmd
|
|
|
|
COPY stages/pikvm/config.txt /boot/
|
|
COPY stages/pikvm/sysctl.conf /etc/sysctl.d/99-pikvm.conf
|
|
COPY stages/pikvm/udev.rules /etc/udev/rules.d/pikvm.rules
|
|
COPY stages/pikvm/motd /etc/
|
|
|
|
RUN sed -i -e "s/console=ttyAMA0\,115200//g" /boot/cmdline.txt \
|
|
&& sed -i -e "s/kgdboc=ttyAMA0\,115200//g" /boot/cmdline.txt
|
|
RUN systemctl mask serial-getty@ttyAMA0.service
|
|
|
|
RUN rm -rf /etc/nginx/* \
|
|
&& cp /usr/share/kvmd/configs/nginx/* /etc/nginx/ \
|
|
&& sed -i -e "s/^#PROD//g" /etc/nginx/nginx.conf
|
|
RUN cp /usr/share/kvmd/configs/kvmd/v1.yaml /etc/kvmd.yaml
|
|
|
|
ARG WEBUI_ADMIN_PASSWD
|
|
ENV WEBUI_ADMIN_PASSWD $WEBUI_ADMIN_PASSWD
|
|
RUN echo "$WEBUI_ADMIN_PASSWD" | htpasswd -ci /etc/nginx/htpasswd admin
|
|
|
|
ARG NEW_HTTPS_CERT
|
|
ENV NEW_HTTPS_CERT $NEW_HTTPS_CERT
|
|
RUN echo $NEW_HTTPS_CERT
|
|
RUN mkdir /etc/nginx/ssl \
|
|
&& cd /etc/nginx/ssl \
|
|
&& openssl req -new -x509 -nodes -newkey rsa:4096 -keyout server.key -out server.crt -days 3650 \
|
|
-subj "/C=RU/ST=Moscow/L=Moscow/O=Pi-KVM/OU=Pi-KVM/CN=localhost" \
|
|
&& chmod 400 server.key \
|
|
&& chmod 444 server.crt \
|
|
&& chmod 750 /etc/nginx/ssl \
|
|
&& chown -R root:http /etc/nginx/ssl
|