mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-07-23 21:55:36 +02:00
swap alpine i3 to chromium (#266)
This commit is contained in:
parent
bc6fbddf62
commit
430875b01e
@ -17,7 +17,7 @@ RUN \
|
||||
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
||||
echo "**** install packages ****" && \
|
||||
apk add --no-cache \
|
||||
firefox \
|
||||
chromium \
|
||||
i3status \
|
||||
i3wm \
|
||||
st \
|
||||
@ -26,6 +26,9 @@ RUN \
|
||||
ln -s \
|
||||
/usr/bin/st \
|
||||
/usr/bin/x-terminal-emulator && \
|
||||
sed -i \
|
||||
's:/usr/bin/chromium-browser:/usr/bin/chromium:g' \
|
||||
/usr/share/applications/chromium.desktop && \
|
||||
echo "**** cleanup ****" && \
|
||||
rm -rf \
|
||||
/config/.cache \
|
||||
|
@ -17,7 +17,7 @@ RUN \
|
||||
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
||||
echo "**** install packages ****" && \
|
||||
apk add --no-cache \
|
||||
firefox \
|
||||
chromium \
|
||||
i3status \
|
||||
i3wm \
|
||||
st \
|
||||
@ -26,6 +26,9 @@ RUN \
|
||||
ln -s \
|
||||
/usr/bin/st \
|
||||
/usr/bin/x-terminal-emulator && \
|
||||
sed -i \
|
||||
's:/usr/bin/chromium-browser:/usr/bin/chromium:g' \
|
||||
/usr/share/applications/chromium.desktop && \
|
||||
echo "**** cleanup ****" && \
|
||||
rm -rf \
|
||||
/config/.cache \
|
||||
|
15
root/usr/bin/chromium
Executable file
15
root/usr/bin/chromium
Executable file
@ -0,0 +1,15 @@
|
||||
#! /bin/bash
|
||||
|
||||
BIN=/usr/bin/chromium-browser
|
||||
|
||||
# Cleanup
|
||||
if ! pgrep chromium > /dev/null;then
|
||||
rm -f $HOME/.config/chromium/Singleton*
|
||||
fi
|
||||
|
||||
# Run normally on privved containers or modified un non priv
|
||||
if grep -q 'Seccomp:.0' /proc/1/status; then
|
||||
${BIN} --no-first-run --password-store=basic "$@"
|
||||
else
|
||||
${BIN} --no-first-run --password-store=basic --no-sandbox --test-type "$@"
|
||||
fi
|
Loading…
x
Reference in New Issue
Block a user