Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.jenkins-external
data
rustdesk
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ RUN \
/usr/bin/chromium-browser && \
rm -f \
/etc/xdg/autostart/xscreensaver.desktop && \
echo "**** install proot-apps ****" && \
rm -f \
"$HOME/.local/bin/ncat" \
"$HOME/.local/bin/proot-apps" \
"$HOME/.local/bin/proot" \
"$HOME/.local/bin/jq" && \
mkdir -p "$HOME/.local/bin" && \
curl -L "https://github.com/linuxserver/proot-apps/releases/download/$(curl -sX GET "https://api.github.com/repos/linuxserver/proot-apps/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[\"\"]')/proot-apps-$(uname -m).tar.gz" | tar -xzf - -C "$HOME/.local/bin/" && \
export PATH="$HOME/.local/bin:$PATH" && \
echo "**** cleanup ****" && \
apt-get autoclean && \
rm -rf \
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ RUN \
/usr/bin/chromium-browser && \
rm -f \
/etc/xdg/autostart/xscreensaver.desktop && \
echo "**** install proot-apps ****" && \
rm -f \
"$HOME/.local/bin/ncat" \
"$HOME/.local/bin/proot-apps" \
"$HOME/.local/bin/proot" \
"$HOME/.local/bin/jq" && \
mkdir -p "$HOME/.local/bin" && \
curl -L "https://github.com/linuxserver/proot-apps/releases/download/$(curl -sX GET "https://api.github.com/repos/linuxserver/proot-apps/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[\"\"]')/proot-apps-$(uname -m).tar.gz" | tar -xzf - -C "$HOME/.local/bin/" && \
export PATH="$HOME/.local/bin:$PATH" && \
echo "**** cleanup ****" && \
apt-get autoclean && \
rm -rf \
Expand Down
18 changes: 18 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
services:
webtop:
build:
context: .
dockerfile: Dockerfile
container_name: webtop
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./data:/config
ports:
- 3000:3000
- 3001:3001
shm_size: "1gb"
restart: unless-stopped