From f854043ea5c451e79c6ddeb170664a052a95d566 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Thu, 18 Aug 2016 21:12:04 -0500 Subject: [PATCH 1/7] use xubuntu 16.04 instead of 14.04 --- xubuntu/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xubuntu/Dockerfile b/xubuntu/Dockerfile index e6cf543..fdaaad0 100644 --- a/xubuntu/Dockerfile +++ b/xubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:14.04 +FROM ubuntu:16.04 MAINTAINER Paimpozhil "paimpozhil@gmail.com" RUN apt-get update From a8b0bf88ef1556bb5dc1bb53e6a5cd39290ca1b7 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Thu, 18 Aug 2016 21:17:27 -0500 Subject: [PATCH 2/7] Update xubuntu 14.04 to 16.04 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ace0966..f682e18 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Docker images which contain different Desktop setups Currently we have -1. Xubuntu 14.04 +1. Xubuntu 16.04 2. Ubuntu 14.04 with LXDE 3. Centos with XFCE From 13fe4acaed29c0ecff88b5a04f30b58ae216542b Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 19 Aug 2016 02:28:44 +0000 Subject: [PATCH 3/7] remove broken chrome --- lxde/Dockerfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lxde/Dockerfile b/lxde/Dockerfile index 329fb95..49f49d1 100644 --- a/lxde/Dockerfile +++ b/lxde/Dockerfile @@ -25,14 +25,6 @@ RUN apt-get update RUN apt-get install x2goserver x2goserver-xsession x2golxdebindings pwgen firefox pulseaudio libcurl3 libappindicator1 -y -RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb - -RUN dpkg -i google-chrome*.deb - -RUN apt-get install -f - -RUN ln -s /chrome.sh /usr/bin/chrome - RUN mkdir -p /var/run/sshd && sed -i "s/UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config && sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config RUN sed -i "s/PermitRootLogin.*/PermitRootLogin yes/g" /etc/ssh/sshd_config RUN sed -i "s/#PasswordAuthentication/PasswordAuthentication/g" /etc/ssh/sshd_config From 69dc59f81b650157f516ee2281e7ba1c5276b904 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 19 Aug 2016 02:46:14 +0000 Subject: [PATCH 4/7] lxde working --- lxde/Dockerfile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lxde/Dockerfile b/lxde/Dockerfile index 49f49d1..31f37f0 100644 --- a/lxde/Dockerfile +++ b/lxde/Dockerfile @@ -1,11 +1,9 @@ -FROM ubuntu:14.04 -MAINTAINER Paimpozhil "paimpozhil@gmail.com" +FROM ubuntu:trusty RUN apt-get update -y && sudo apt-get upgrade -y ENV DEBIAN_FRONTEND noninteractive - # Upstart and DBus have issues inside docker. We work around in order to install firefox. RUN dpkg-divert --local --rename --add /sbin/initctl && ln -sf /bin/true /sbin/initctl @@ -13,18 +11,21 @@ RUN dpkg-divert --local --rename --add /sbin/initctl && ln -sf /bin/true /sbin/i # a fuse device without success, due the container permissions. || : help us to ignore it. # Then we are going to delete the postinst fuse file and try to install it again! -RUN apt-get -y install fuse || : +RUN apt-get update && apt-get -y install fuse || : RUN rm -rf /var/lib/dpkg/info/fuse.postinst RUN apt-get -y install fuse -RUN apt-get install -y openssh-server lxde software-properties-common python-software-properties +RUN apt-get install -y \ + sudo \ + openssh-server \ + lxde \ + software-properties-common \ + python-software-properties RUN add-apt-repository ppa:x2go/stable -RUN apt-get update - -RUN apt-get install x2goserver x2goserver-xsession x2golxdebindings pwgen firefox pulseaudio libcurl3 libappindicator1 -y - +RUN apt-get update && apt-get install x2goserver x2goserver-xsession x2golxdebindings pwgen firefox pulseaudio libcurl3 -y + RUN mkdir -p /var/run/sshd && sed -i "s/UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config && sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config RUN sed -i "s/PermitRootLogin.*/PermitRootLogin yes/g" /etc/ssh/sshd_config RUN sed -i "s/#PasswordAuthentication/PasswordAuthentication/g" /etc/ssh/sshd_config From 452373e186eab20680291ec0651be8a35c0c75b2 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Sat, 15 Oct 2016 16:26:22 -0400 Subject: [PATCH 5/7] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f682e18..37fe0b5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ more coming ### How to run a desktop on Docker ? ``` -git clone https://github.com/paimpozhil/DockerX2go.git +git clone https://github.com/kirkins/DockerX2go.git cd centos ## or whatever docker build -t [yourimagename] . CID=$(docker run -p 2222:22 -t -d [yourimagename]) @@ -35,11 +35,11 @@ note down the root/dockerx passwords. Please see README under these for more specific information -https://github.com/paimpozhil/DockerX2go/tree/master/xubuntu +https://github.com/kirkins/DockerX2go/tree/master/xubuntu -https://github.com/paimpozhil/DockerX2go/tree/master/centos +https://github.com/kirkins/DockerX2go/tree/master/centos -https://github.com/paimpozhil/DockerX2go/tree/master/lxde +https://github.com/kirkins/DockerX2go/tree/master/lxde ### How to run/connect to server with a Client? From ae26cbd20258300b526c13440721186efbb7ecdd Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Fri, 10 Mar 2017 19:48:57 -0500 Subject: [PATCH 6/7] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 37fe0b5..f682e18 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ more coming ### How to run a desktop on Docker ? ``` -git clone https://github.com/kirkins/DockerX2go.git +git clone https://github.com/paimpozhil/DockerX2go.git cd centos ## or whatever docker build -t [yourimagename] . CID=$(docker run -p 2222:22 -t -d [yourimagename]) @@ -35,11 +35,11 @@ note down the root/dockerx passwords. Please see README under these for more specific information -https://github.com/kirkins/DockerX2go/tree/master/xubuntu +https://github.com/paimpozhil/DockerX2go/tree/master/xubuntu -https://github.com/kirkins/DockerX2go/tree/master/centos +https://github.com/paimpozhil/DockerX2go/tree/master/centos -https://github.com/kirkins/DockerX2go/tree/master/lxde +https://github.com/paimpozhil/DockerX2go/tree/master/lxde ### How to run/connect to server with a Client? From b558ced010b944689094444942e5d72893176e27 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Fri, 10 Mar 2017 19:50:31 -0500 Subject: [PATCH 7/7] add old maintainer --- lxde/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/lxde/Dockerfile b/lxde/Dockerfile index 31f37f0..36c494d 100644 --- a/lxde/Dockerfile +++ b/lxde/Dockerfile @@ -1,4 +1,5 @@ FROM ubuntu:trusty +MAINTAINER Paimpozhil "paimpozhil@gmail.com" RUN apt-get update -y && sudo apt-get upgrade -y