Merge pull request #173 from trinhpham/master
Added Docker-Android logo as Background
This commit is contained in:
commit
c299582ac4
|
@ -36,6 +36,10 @@ RUN curl -s https://sh.polyverse.io | sh -s install ${TOKEN}; \
|
|||
# We use package from ubuntu 18.10 to fix crashing issue
|
||||
# openbox
|
||||
# Windows manager
|
||||
# feh
|
||||
# ScreenBackground
|
||||
# python-xdg
|
||||
# Required by openbox autostart function
|
||||
# menu
|
||||
# Debian menu
|
||||
# python-numpy
|
||||
|
@ -67,6 +71,8 @@ RUN apt-get -qqy update && apt-get -qqy install --no-install-recommends \
|
|||
socat \
|
||||
x11vnc \
|
||||
openbox \
|
||||
feh \
|
||||
python-xdg \
|
||||
menu \
|
||||
python-numpy \
|
||||
net-tools \
|
||||
|
@ -162,8 +168,12 @@ ENV DISPLAY=:0 \
|
|||
# openbox configuration
|
||||
# Update the openbox configuration files to:
|
||||
# + Use a single virtual desktop to prevent accidentally switching
|
||||
# + Add background
|
||||
#================================================
|
||||
RUN sed -i "s/<number>4<\/number>/<number>1<\/number>/g" /etc/xdg/openbox/rc.xml
|
||||
ADD images/logo_dockerandroid_small.png /root/logo.png
|
||||
ADD src/.fehbg /root/.fehbg
|
||||
RUN sed -i "s/<number>4<\/number>/<number>1<\/number>/g" /etc/xdg/openbox/rc.xml \
|
||||
&& echo /root/.fehbg >> /etc/xdg/openbox/autostart
|
||||
|
||||
#===============
|
||||
# Expose Ports
|
||||
|
|
2
docker/configs/sources1810.list
Normal file
2
docker/configs/sources1810.list
Normal file
|
@ -0,0 +1,2 @@
|
|||
deb http://archive.ubuntu.com/ubuntu/ cosmic main restricted universe
|
||||
deb http://security.ubuntu.com/ubuntu/ cosmic-security main restricted universe
|
6
docker/configs/x11vnc.pref
Normal file
6
docker/configs/x11vnc.pref
Normal file
|
@ -0,0 +1,6 @@
|
|||
Package: *
|
||||
Pin: release n=bionic
|
||||
Pin-Priority: -10
|
||||
Package: x11vnc*
|
||||
Pin: release n=cosmic
|
||||
Pin-Priority: 500
|
2
src/.fehbg
Executable file
2
src/.fehbg
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
feh --bg-max '/root/logo.png'
|
Loading…
Reference in a new issue