Merge branch 'master' into bionic-lxqt
This commit is contained in:
commit
d145ab0f2d
15 changed files with 1673 additions and 1657 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
# Run in local
|
# Run in local
|
||||||
```
|
```
|
||||||
make build
|
make clean
|
||||||
|
FLAVOR=lxqt ARCH=amd64 IMAGE=ubuntu:18.04 make build
|
||||||
make run
|
make run
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
121
Dockerfile.amd64
121
Dockerfile.amd64
|
|
@ -1,72 +1,101 @@
|
||||||
|
# Built with arch: amd64 flavor: lxqt image: ubuntu:18.04 localbuild: tw
|
||||||
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
# base system
|
# base system
|
||||||
################################################################################
|
################################################################################
|
||||||
ARG image=ubuntu:18.04
|
|
||||||
FROM $image as system
|
|
||||||
|
|
||||||
ARG localbuild
|
FROM ubuntu:18.04 as system
|
||||||
RUN echo "LOCALBUILD=$localbuild"
|
|
||||||
RUN if [ "x$localbuild" != "x" ]; then sed -i 's#http://archive.ubuntu.com/#http://'$localbuild'.archive.ubuntu.com/#' /etc/apt/sources.list; fi
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/#http://tw.archive.ubuntu.com/#' /etc/apt/sources.list;
|
||||||
|
|
||||||
|
|
||||||
|
# built-in packages
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends software-properties-common curl apache2-utils \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
supervisor nginx sudo net-tools zenity xz-utils \
|
||||||
|
dbus-x11 x11-utils alsa-utils \
|
||||||
|
mesa-utils libgl1-mesa-dri \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
# install debs error if combine together
|
||||||
|
RUN add-apt-repository -y ppa:fcwu-tw/apps \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
xvfb x11vnc=0.9.16-1 \
|
||||||
|
vim-tiny firefox chromium-browser ttf-ubuntu-font-family ttf-wqy-zenhei \
|
||||||
|
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
lxqt openbox gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf arc-theme \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# What apps you would like to be installed
|
|
||||||
ARG APPS="vim-tiny net-tools zenity xz-utils firefox chromium-browser"
|
|
||||||
ENV APPS=$APPS
|
|
||||||
ARG BUILD_DEPS="build-essential software-properties-common"
|
|
||||||
ENV BUILD_DEPS=$BUILD_DEPS
|
|
||||||
# Additional packages require ~600MB
|
# Additional packages require ~600MB
|
||||||
# libreoffice pinta language-pack-zh-hant language-pack-gnome-zh-hant firefox-locale-zh-hant libreoffice-l10n-zh-tw
|
# libreoffice pinta language-pack-zh-hant language-pack-gnome-zh-hant firefox-locale-zh-hant libreoffice-l10n-zh-tw
|
||||||
|
|
||||||
# python library
|
|
||||||
COPY image/usr/local/lib/web/backend/requirements.txt /tmp/
|
|
||||||
|
|
||||||
# built-in packages
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends software-properties-common curl apache2-utils \
|
|
||||||
&& apt-get update \
|
|
||||||
&& add-apt-repository -y ppa:fcwu-tw/apps \
|
|
||||||
&& apt-get install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
$BUILD_DEPS apache2-utils curl supervisor nginx sudo \
|
|
||||||
dbus-x11 x11-utils alsa-utils \
|
|
||||||
mesa-utils libgl1-mesa-dri \
|
|
||||||
lxqt openbox xvfb x11vnc \
|
|
||||||
gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf arc-theme \
|
|
||||||
ttf-ubuntu-font-family ttf-wqy-zenhei \
|
|
||||||
$APPS \
|
|
||||||
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
|
||||||
&& apt-get install -y python-dev python-pip \
|
|
||||||
&& pip install setuptools wheel && pip install -r /tmp/requirements.txt \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
|
||||||
&& apt-get remove -y python-pip `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
|
||||||
&& apt-get purge -y --auto-remove $BUILD_DEPS \
|
|
||||||
&& apt-get autoclean \
|
|
||||||
&& apt-get autoremove \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
||||||
|
|
||||||
|
|
||||||
# tini for subreap
|
# tini for subreap
|
||||||
ARG TINI_VERSION=v0.18.0
|
ARG TINI_VERSION=v0.18.0
|
||||||
ENV TINI_VERSION=$TINI_VERSION
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-amd64 /bin/tini
|
||||||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /bin/tini
|
|
||||||
RUN chmod +x /bin/tini
|
RUN chmod +x /bin/tini
|
||||||
|
|
||||||
# ffmpeg
|
# ffmpeg
|
||||||
RUN mkdir -p /usr/local/ffmpeg \
|
RUN mkdir -p /usr/local/ffmpeg \
|
||||||
&& curl -sSL --http1.1 https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz | tar xJvf - -C /usr/local/ffmpeg/ --strip 1 \
|
&& curl -sSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz | tar xJvf - -C /usr/local/ffmpeg/ --strip 1
|
||||||
&& rm -rf /usr/local/ffmpeg/manpages
|
|
||||||
|
# python library
|
||||||
|
COPY image/usr/local/lib/web/backend/requirements.txt /tmp/
|
||||||
|
RUN apt-get update \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
||||||
|
&& apt-get install -y python-pip python-dev build-essential \
|
||||||
|
&& pip install setuptools wheel && pip install -r /tmp/requirements.txt \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
||||||
|
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
||||||
|
&& apt-get autoclean -y \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# builder
|
# builder
|
||||||
################################################################################
|
################################################################################
|
||||||
FROM node:8-alpine as builder
|
FROM ubuntu:18.04 as builder
|
||||||
|
|
||||||
|
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/#http://tw.archive.ubuntu.com/#' /etc/apt/sources.list;
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
||||||
|
|
||||||
|
# nodejs
|
||||||
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
|
||||||
|
&& apt-get install -y nodejs
|
||||||
|
|
||||||
|
# yarn
|
||||||
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||||
|
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -y yarn
|
||||||
|
|
||||||
# build frontend
|
# build frontend
|
||||||
COPY web /src/web
|
COPY web /src/web
|
||||||
RUN cd /src/web \
|
RUN cd /src/web \
|
||||||
&& yarn install \
|
&& yarn \
|
||||||
&& yarn build
|
&& npm run build
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,23 @@
|
||||||
FROM ubuntu:18.04 as amd64
|
# Built with arch: armhf flavor: lxde image: ubuntu:18.04 localbuild: 1
|
||||||
RUN apt update && apt install -y qemu-user-static
|
#
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# base system
|
# base system
|
||||||
################################################################################
|
################################################################################
|
||||||
FROM arm32v7/ubuntu:18.04 as system
|
|
||||||
|
|
||||||
|
# qemu helper for arm build
|
||||||
|
FROM ubuntu:18.04 as amd64
|
||||||
|
RUN apt update && apt install -y qemu-user-static
|
||||||
|
FROM arm32v7/ubuntu:18.04 as system
|
||||||
COPY --from=amd64 /usr/bin/qemu-arm-static /usr/bin/
|
COPY --from=amd64 /usr/bin/qemu-arm-static /usr/bin/
|
||||||
ARG localbuild
|
ARG localbuild
|
||||||
RUN if [ "x$localbuild" != "x" ]; then sed -i 's#http://archive.ubuntu.com/#http://'$localbuild'.archive.ubuntu.com/#' /etc/apt/sources.list; fi
|
RUN if [ "x$localbuild" != "x" ]; then sed -i 's#http://archive.ubuntu.com/#http://'$localbuild'.archive.ubuntu.com/#' /etc/apt/sources.list; fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/#http://tw.archive.ubuntu.com/#' /etc/apt/sources.list;
|
||||||
|
|
||||||
|
|
||||||
|
# built-in packages
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
# What apps you would like to be installed
|
# What apps you would like to be installed
|
||||||
ARG APPS="vim-tiny net-tools zenity xz-utils firefox chromium-browser"
|
ARG APPS="vim-tiny net-tools zenity xz-utils firefox chromium-browser"
|
||||||
|
|
@ -73,6 +81,9 @@ RUN cd /src/web \
|
||||||
&& yarn build
|
&& yarn build
|
||||||
|
|
||||||
|
|
||||||
|
RUN cd /src/web/dist/static/novnc && patch -p0 < /src/web/novnc-armhf-1.patch
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# merge
|
# merge
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
@ -86,5 +97,5 @@ EXPOSE 80
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
ENV HOME=/home/ubuntu \
|
ENV HOME=/home/ubuntu \
|
||||||
SHELL=/bin/bash
|
SHELL=/bin/bash
|
||||||
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1/api/health
|
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
||||||
ENTRYPOINT ["/startup.sh"]
|
ENTRYPOINT ["/startup.sh"]
|
||||||
|
|
|
||||||
130
Dockerfile.j2
Normal file
130
Dockerfile.j2
Normal file
|
|
@ -0,0 +1,130 @@
|
||||||
|
# Built with arch: {{ arch }} flavor: {{ flavor }} image: {{ image }} localbuild: {{localbuild }}
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
# base system
|
||||||
|
################################################################################
|
||||||
|
{%if arch == "amd64"%}
|
||||||
|
FROM {{image}} as system
|
||||||
|
{%elif arch == "armhf"%}
|
||||||
|
# qemu helper for arm build
|
||||||
|
FROM {{image}} as amd64
|
||||||
|
RUN apt update && apt install -y qemu-user-static
|
||||||
|
FROM arm32v7/{{image}} as system
|
||||||
|
COPY --from=amd64 /usr/bin/qemu-arm-static /usr/bin/
|
||||||
|
{%endif%}
|
||||||
|
|
||||||
|
{% if localbuild %}
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/#http://tw.archive.ubuntu.com/#' /etc/apt/sources.list;
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
# built-in packages
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends software-properties-common curl apache2-utils \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
supervisor nginx sudo net-tools zenity xz-utils \
|
||||||
|
dbus-x11 x11-utils alsa-utils \
|
||||||
|
mesa-utils libgl1-mesa-dri \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
# install debs error if combine together
|
||||||
|
RUN add-apt-repository -y ppa:fcwu-tw/apps \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
xvfb x11vnc=0.9.16-1 \
|
||||||
|
{%for package in addon_packages%}{{package}} {%endfor%} \
|
||||||
|
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
{%if desktop == "lxde" %}
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
{%endif%}
|
||||||
|
{%if desktop == "lxqt" %}
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
|
lxqt openbox gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf arc-theme \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
{%endif%}
|
||||||
|
# Additional packages require ~600MB
|
||||||
|
# libreoffice pinta language-pack-zh-hant language-pack-gnome-zh-hant firefox-locale-zh-hant libreoffice-l10n-zh-tw
|
||||||
|
|
||||||
|
# tini for subreap
|
||||||
|
ARG TINI_VERSION=v0.18.0
|
||||||
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-{{arch}} /bin/tini
|
||||||
|
RUN chmod +x /bin/tini
|
||||||
|
|
||||||
|
# ffmpeg
|
||||||
|
RUN mkdir -p /usr/local/ffmpeg \
|
||||||
|
&& curl -sSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz | tar xJvf - -C /usr/local/ffmpeg/ --strip 1
|
||||||
|
|
||||||
|
# python library
|
||||||
|
COPY image/usr/local/lib/web/backend/requirements.txt /tmp/
|
||||||
|
RUN apt-get update \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
||||||
|
&& apt-get install -y python-pip python-dev build-essential \
|
||||||
|
&& pip install setuptools wheel && pip install -r /tmp/requirements.txt \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
||||||
|
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
||||||
|
&& apt-get autoclean -y \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# builder
|
||||||
|
################################################################################
|
||||||
|
FROM {{image}} as builder
|
||||||
|
|
||||||
|
{% if localbuild %}
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/#http://tw.archive.ubuntu.com/#' /etc/apt/sources.list;
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
||||||
|
|
||||||
|
# nodejs
|
||||||
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
|
||||||
|
&& apt-get install -y nodejs
|
||||||
|
|
||||||
|
# yarn
|
||||||
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||||
|
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -y yarn
|
||||||
|
|
||||||
|
# build frontend
|
||||||
|
COPY web /src/web
|
||||||
|
RUN cd /src/web \
|
||||||
|
&& yarn \
|
||||||
|
&& npm run build
|
||||||
|
|
||||||
|
{%if arch == "armhf"%}
|
||||||
|
RUN cd /src/web/dist/static/novnc && patch -p0 < /src/web/novnc-armhf-1.patch
|
||||||
|
{%endif%}
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# merge
|
||||||
|
################################################################################
|
||||||
|
FROM system
|
||||||
|
LABEL maintainer="fcwu.tw@gmail.com"
|
||||||
|
|
||||||
|
COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
|
||||||
|
COPY image /
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
WORKDIR /root
|
||||||
|
ENV HOME=/home/ubuntu \
|
||||||
|
SHELL=/bin/bash
|
||||||
|
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
||||||
|
ENTRYPOINT ["/startup.sh"]
|
||||||
22
Makefile
22
Makefile
|
|
@ -7,17 +7,18 @@ LOCALBUILD ?= tw
|
||||||
HTTP_PASSWORD ?= 123456
|
HTTP_PASSWORD ?= 123456
|
||||||
CUSTOM_USER ?= ubuntu
|
CUSTOM_USER ?= ubuntu
|
||||||
PASSWORD ?= ubuntu
|
PASSWORD ?= ubuntu
|
||||||
|
FLAVOR ?= lxqt
|
||||||
|
ARCH ?= amd64
|
||||||
|
|
||||||
build:
|
templates = Dockerfile image/etc/supervisor/conf.d/supervisord.conf
|
||||||
docker build -t $(REPO):$(TAG) --build-arg localbuild=$(LOCALBUILD) --build-arg image=$(IMAGE) .
|
|
||||||
|
build: $(templates)
|
||||||
|
docker build -t $(REPO):$(TAG) .
|
||||||
|
|
||||||
run:
|
run:
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
-p 6080:80 -p 6081:443 \
|
-p 6080:80 -p 6081:443 \
|
||||||
-v ${PWD}:/src:ro \
|
-v ${PWD}:/src:ro \
|
||||||
-e HTTP_PASSWORD=$(HTTP_PASSWORD) \
|
|
||||||
-e USER=$(CUSTOM_USER) \
|
|
||||||
-e PASSWORD=$(PASSWORD) \
|
|
||||||
--name ubuntu-desktop-lxde-test \
|
--name ubuntu-desktop-lxde-test \
|
||||||
$(REPO):$(TAG)
|
$(REPO):$(TAG)
|
||||||
|
|
||||||
|
|
@ -28,3 +29,14 @@ gen-ssl:
|
||||||
mkdir -p ssl
|
mkdir -p ssl
|
||||||
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
|
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
|
||||||
-keyout ssl/nginx.key -out ssl/nginx.crt
|
-keyout ssl/nginx.key -out ssl/nginx.crt
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(templates)
|
||||||
|
|
||||||
|
%: %.j2 flavors/$(FLAVOR).yml
|
||||||
|
docker run -v $(shell pwd):/data vikingco/jinja2cli \
|
||||||
|
-D flavor=$(FLAVOR) \
|
||||||
|
-D image=$(IMAGE) \
|
||||||
|
-D localbuild=$(LOCALBUILD) \
|
||||||
|
-D arch=$(ARCH) \
|
||||||
|
$< flavors/$(FLAVOR).yml > $@ || rm $@
|
||||||
|
|
|
||||||
15
README.md
15
README.md
|
|
@ -114,12 +114,27 @@ Following is the screen capture of these operations. Turn on your sound at the e
|
||||||
[](http://www.youtube.com/watch?v=Kv9FGClP1-k)
|
[](http://www.youtube.com/watch?v=Kv9FGClP1-k)
|
||||||
|
|
||||||
|
|
||||||
|
Generate Dockerfile from jinja template
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Dockerfile and configuration can be generated by template.
|
||||||
|
|
||||||
|
- arch: one of `amd64` or `armhf`
|
||||||
|
- flavor: refer to file in flavor/`flavor`.yml
|
||||||
|
- image: base image
|
||||||
|
- localbuild: build from local that will use mirror site if set
|
||||||
|
- desktop: desktop environment which is set in flavor
|
||||||
|
- addon_package: Debian package to be installed which is set in flavor
|
||||||
|
|
||||||
|
Dockerfile and configuration are re-generate if they do not exist. Or you may force to re-generate by removing them with the command `make clean`.
|
||||||
|
|
||||||
Troubleshooting and FAQ
|
Troubleshooting and FAQ
|
||||||
==================
|
==================
|
||||||
|
|
||||||
1. boot2docker connection issue, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/2
|
1. boot2docker connection issue, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/2
|
||||||
2. Multi-language supports, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/80
|
2. Multi-language supports, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/80
|
||||||
3. Autostart, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/85
|
3. Autostart, https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/85
|
||||||
|
4. x11vnc arguments(multiptr), https://github.com/fcwu/docker-ubuntu-vnc-desktop/issues/101
|
||||||
|
|
||||||
License
|
License
|
||||||
==================
|
==================
|
||||||
|
|
|
||||||
8
flavors/lxde.yml
Normal file
8
flavors/lxde.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
addon_packages:
|
||||||
|
- vim-tiny
|
||||||
|
- firefox
|
||||||
|
- chromium-browser
|
||||||
|
- ttf-ubuntu-font-family
|
||||||
|
- ttf-wqy-zenhei
|
||||||
|
desktop: lxde
|
||||||
8
flavors/lxqt.yml
Normal file
8
flavors/lxqt.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
addon_packages:
|
||||||
|
- vim-tiny
|
||||||
|
- firefox
|
||||||
|
- chromium-browser
|
||||||
|
- ttf-ubuntu-font-family
|
||||||
|
- ttf-wqy-zenhei
|
||||||
|
desktop: lxqt
|
||||||
4
hooks/pre_build
Normal file
4
hooks/pre_build
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Register qemu-*-static for all supported processors except the
|
||||||
|
# current one, but also remove all registered binfmt_misc before
|
||||||
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
||||||
|
|
@ -17,15 +17,11 @@ stdout_logfile_maxbytes=0
|
||||||
stderr_logfile=/dev/fd/1
|
stderr_logfile=/dev/fd/1
|
||||||
stderr_logfile_maxbytes=0
|
stderr_logfile_maxbytes=0
|
||||||
|
|
||||||
|
|
||||||
[group:x]
|
[group:x]
|
||||||
# programs=xvfb,wm,lxpanel,pcmanfm,x11vnc,novnc
|
# programs=xvfb,wm,lxpanel,pcmanfm,x11vnc,novnc
|
||||||
programs=xvfb,wm,lxpanel,x11vnc,novnc
|
programs=xvfb,wm,lxpanel,x11vnc,novnc
|
||||||
|
|
||||||
[program:xvfb]
|
|
||||||
priority=10
|
|
||||||
command=/usr/local/bin/xvfb.sh
|
|
||||||
stopsignal=KILL
|
|
||||||
|
|
||||||
[program:wm]
|
[program:wm]
|
||||||
priority=15
|
priority=15
|
||||||
command=/usr/bin/openbox
|
command=/usr/bin/openbox
|
||||||
|
|
@ -45,6 +41,14 @@ environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
||||||
# user=%USER%
|
# user=%USER%
|
||||||
# environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
# environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[program:xvfb]
|
||||||
|
priority=10
|
||||||
|
command=/usr/local/bin/xvfb.sh
|
||||||
|
stopsignal=KILL
|
||||||
|
|
||||||
[program:x11vnc]
|
[program:x11vnc]
|
||||||
priority=20
|
priority=20
|
||||||
command=x11vnc -display :1 -xkb -forever -shared -repeat
|
command=x11vnc -display :1 -xkb -forever -shared -repeat
|
||||||
|
|
|
||||||
74
image/etc/supervisor/conf.d/supervisord.conf.j2
Normal file
74
image/etc/supervisor/conf.d/supervisord.conf.j2
Normal file
|
|
@ -0,0 +1,74 @@
|
||||||
|
[supervisord]
|
||||||
|
redirect_stderr=true
|
||||||
|
stopsignal=QUIT
|
||||||
|
autorestart=true
|
||||||
|
directory=/root
|
||||||
|
|
||||||
|
[program:nginx]
|
||||||
|
priority=10
|
||||||
|
command=nginx -c /etc/nginx/nginx.conf -g 'daemon off;'
|
||||||
|
|
||||||
|
[program:web]
|
||||||
|
priority=10
|
||||||
|
directory=/usr/local/lib/web/backend
|
||||||
|
command=/usr/local/lib/web/backend/run.py
|
||||||
|
stdout_logfile=/dev/fd/1
|
||||||
|
stdout_logfile_maxbytes=0
|
||||||
|
stderr_logfile=/dev/fd/1
|
||||||
|
stderr_logfile_maxbytes=0
|
||||||
|
|
||||||
|
{% if desktop == "lxde" %}
|
||||||
|
[group:x]
|
||||||
|
programs=xvfb,wm,lxpanel,pcmanfm,x11vnc,novnc
|
||||||
|
|
||||||
|
[program:wm]
|
||||||
|
priority=15
|
||||||
|
command=/usr/bin/openbox
|
||||||
|
environment=DISPLAY=":1",HOME="/root",USER="root"
|
||||||
|
|
||||||
|
[program:lxpanel]
|
||||||
|
priority=15
|
||||||
|
directory=%HOME%
|
||||||
|
command=/usr/bin/lxpanel --profile LXDE
|
||||||
|
user=%USER%
|
||||||
|
environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
||||||
|
|
||||||
|
[program:pcmanfm]
|
||||||
|
priority=15
|
||||||
|
directory=%HOME%
|
||||||
|
command=/usr/bin/pcmanfm --desktop --profile LXDE
|
||||||
|
user=%USER%
|
||||||
|
environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if desktop == "lxqt" %}
|
||||||
|
[group:x]
|
||||||
|
programs=xvfb,wm,lxpanel,x11vnc,novnc
|
||||||
|
|
||||||
|
[program:wm]
|
||||||
|
priority=15
|
||||||
|
command=/usr/bin/openbox
|
||||||
|
environment=DISPLAY=":1",HOME="/root",USER="root"
|
||||||
|
|
||||||
|
[program:lxpanel]
|
||||||
|
priority=15
|
||||||
|
directory=%HOME%
|
||||||
|
command=/usr/bin/startlxqt
|
||||||
|
user=%USER%
|
||||||
|
environment=DISPLAY=":1",HOME="%HOME%",USER="%USER%"
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
[program:xvfb]
|
||||||
|
priority=10
|
||||||
|
command=/usr/local/bin/xvfb.sh
|
||||||
|
stopsignal=KILL
|
||||||
|
|
||||||
|
[program:x11vnc]
|
||||||
|
priority=20
|
||||||
|
command=x11vnc -display :1 -xkb -forever -shared -repeat
|
||||||
|
|
||||||
|
[program:novnc]
|
||||||
|
priority=25
|
||||||
|
directory=/usr/local/lib/web/frontend/static/novnc
|
||||||
|
command=bash /usr/local/lib/web/frontend/static/novnc/utils/launch.sh --listen 6081
|
||||||
|
stopasgroup=true
|
||||||
|
|
@ -8,6 +8,14 @@ if [ -n "$VNC_PASSWORD" ]; then
|
||||||
export VNC_PASSWORD=
|
export VNC_PASSWORD=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$X11VNC_ARGS" ]; then
|
||||||
|
sed -i "s/^command=x11vnc.*/& ${X11VNC_ARGS}/" /etc/supervisor/conf.d/supervisord.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$OPENBOX_ARGS" ]; then
|
||||||
|
sed -i "s#^command=/usr/bin/openbox.*#& ${OPENBOX_ARGS}#" /etc/supervisor/conf.d/supervisord.conf
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "$RESOLUTION" ]; then
|
if [ -n "$RESOLUTION" ]; then
|
||||||
sed -i "s/1024x768/$RESOLUTION/" /usr/local/bin/xvfb.sh
|
sed -i "s/1024x768/$RESOLUTION/" /usr/local/bin/xvfb.sh
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
13
web/novnc-armhf-1.patch
Normal file
13
web/novnc-armhf-1.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
--- core/rfb.js 2019-02-24 21:17:04.402944311 +0800
|
||||||
|
+++ core/rfb.js 2019-02-24 21:17:34.782484107 +0800
|
||||||
|
@@ -1256,8 +1256,8 @@
|
||||||
|
encs.push(encodings.encodingCopyRect);
|
||||||
|
// Only supported with full depth support
|
||||||
|
if (this._fb_depth == 24) {
|
||||||
|
- encs.push(encodings.encodingTight);
|
||||||
|
- encs.push(encodings.encodingTightPNG);
|
||||||
|
+ // encs.push(encodings.encodingTight);
|
||||||
|
+ // encs.push(encodings.encodingTightPNG);
|
||||||
|
encs.push(encodings.encodingHextile);
|
||||||
|
encs.push(encodings.encodingRRE);
|
||||||
|
}
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^0.18.0",
|
"axios": "^0.18.0",
|
||||||
"vue": "^2.5.2",
|
"vue": "^2.5.2",
|
||||||
"vue-material": "^1.0.0-beta-7",
|
"vue-material": "^1.0.0-beta-10.2",
|
||||||
"vue-router": "^3.0.1"
|
"vue-router": "^3.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"friendly-errors-webpack-plugin": "^1.6.1",
|
"friendly-errors-webpack-plugin": "^1.6.1",
|
||||||
"html-webpack-plugin": "^2.30.1",
|
"html-webpack-plugin": "^2.30.1",
|
||||||
"nightwatch": "^0.9.12",
|
"nightwatch": "^0.9.12",
|
||||||
"node-notifier": "^5.1.2",
|
"node-notifier": "^5.4.0",
|
||||||
"optimize-css-assets-webpack-plugin": "^3.2.0",
|
"optimize-css-assets-webpack-plugin": "^3.2.0",
|
||||||
"ora": "^1.2.0",
|
"ora": "^1.2.0",
|
||||||
"portfinder": "^1.0.13",
|
"portfinder": "^1.0.13",
|
||||||
|
|
@ -67,7 +67,7 @@
|
||||||
"vue-template-compiler": "^2.5.2",
|
"vue-template-compiler": "^2.5.2",
|
||||||
"webpack": "^3.6.0",
|
"webpack": "^3.6.0",
|
||||||
"webpack-bundle-analyzer": "^2.9.0",
|
"webpack-bundle-analyzer": "^2.9.0",
|
||||||
"webpack-dev-server": "^2.9.1",
|
"webpack-dev-server": "^3.2.1",
|
||||||
"webpack-merge": "^4.1.0"
|
"webpack-merge": "^4.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
||||||
2883
web/yarn.lock
2883
web/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue