Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker-webtop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MyDockerImages
docker-webtop
Compare revisions
cb7e8c1e3e17bddcfaac69f0baa636b65c0f8a71 to d6f7248a6f7ac87613a4a9baab6e82915e878df8
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
my-docker-images/docker-webtop
Select target project
No results found
d6f7248a6f7ac87613a4a9baab6e82915e878df8
Select Git revision
Branches
icewm
kde
main
xfce
4 results
Swap
Target
my-docker-images/docker-webtop
Select target project
nicolas.thiery/docker-webtop-sfml
my-docker-images/docker-webtop
2 results
cb7e8c1e3e17bddcfaac69f0baa636b65c0f8a71
Select Git revision
Branches
icewm
kde
main
xfce
4 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
enable ssh access
· b5a66d87
Dominique Marcadet
authored
2 years ago
Unverified
b5a66d87
update README about ssh and jammy
· d6f7248a
Dominique Marcadet
authored
2 years ago
Unverified
d6f7248a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+9
-1
9 additions, 1 deletion
Dockerfile
README.md
+3
-3
3 additions, 3 deletions
README.md
root/etc/services.d/sshd/run
+3
-0
3 additions, 0 deletions
root/etc/services.d/sshd/run
with
15 additions
and
4 deletions
Dockerfile
View file @
d6f7248a
...
...
@@ -11,7 +11,8 @@ RUN \
apt-get upgrade
-y
&&
\
apt-get
install
-y
\
nginx
\
apache2-utils
apache2-utils
\
openssh-server
RUN
\
sed
-i
's/worker_processes auto;/worker_processes 1;/'
/etc/nginx/nginx.conf
...
...
@@ -27,6 +28,10 @@ RUN \
## add local files
COPY
/root /
# For sshd
RUN
\
mkdir
-p
/run/sshd
## Some config
RUN
\
mkdir
/config/.icewm
&&
\
...
...
@@ -46,3 +51,6 @@ ENTRYPOINT ["/bin/bash", "/usr/local/lib/wrapper_script.sh"]
## nginx reverse proxy
EXPOSE
3080
# sshd
EXPOSE
22
This diff is collapsed.
Click to expand it.
README.md
View file @
d6f7248a
...
...
@@ -7,7 +7,7 @@ This image is a base image for a linux with a GUI running either on a local dock
It is based on
[
WebTop image from LinuxServer.io
](
https://github.com/linuxserver/docker-webtop
)
which is maintained and quite often updated.
This image use Ubuntu 2
0
.04 and the
[
IceWM
](
https://ice-wm.org
)
window manager.
This image use Ubuntu 2
2
.04 and the
[
IceWM
](
https://ice-wm.org
)
window manager.
## Changes
...
...
@@ -17,10 +17,10 @@ was not succesful.
## Details
-
The exposed ports are 3000 (VNC with a Web Browser), 3080 (nginx reverse proxy) and 3089
-
The exposed ports are
22 (sshd),
3000 (VNC with a Web Browser), 3080 (nginx reverse proxy) and 3089
(RDP)
-
The user folder is
`/config`
-
the user password
is
`abc`
, sudo is without password
-
the user
is
`abc`
, its
password
also
, sudo is without password
-
if docker is installed on your computer, you can run (amd64 or arm64 architecture) this
image, assuming you are in a specific folder that will be shared with the container at
`/config`
, with:
...
...
This diff is collapsed.
Click to expand it.
root/etc/services.d/sshd/run
0 → 100755
View file @
d6f7248a
#! /bin/bash
/usr/sbin/sshd
-D
This diff is collapsed.
Click to expand it.