swap alpine xfce to chromium (#269)
This commit is contained in:
parent
9851a95888
commit
5994a1b23d
|
@ -17,10 +17,10 @@ RUN \
|
||||||
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
||||||
echo "**** install packages ****" && \
|
echo "**** install packages ****" && \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
|
chromium \
|
||||||
faenza-icon-theme \
|
faenza-icon-theme \
|
||||||
faenza-icon-theme-xfce4-appfinder \
|
faenza-icon-theme-xfce4-appfinder \
|
||||||
faenza-icon-theme-xfce4-panel \
|
faenza-icon-theme-xfce4-panel \
|
||||||
firefox \
|
|
||||||
mousepad \
|
mousepad \
|
||||||
ristretto \
|
ristretto \
|
||||||
thunar \
|
thunar \
|
||||||
|
|
|
@ -17,10 +17,10 @@ RUN \
|
||||||
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
|
||||||
echo "**** install packages ****" && \
|
echo "**** install packages ****" && \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
|
chromium \
|
||||||
faenza-icon-theme \
|
faenza-icon-theme \
|
||||||
faenza-icon-theme-xfce4-appfinder \
|
faenza-icon-theme-xfce4-appfinder \
|
||||||
faenza-icon-theme-xfce4-panel \
|
faenza-icon-theme-xfce4-panel \
|
||||||
firefox \
|
|
||||||
mousepad \
|
mousepad \
|
||||||
ristretto \
|
ristretto \
|
||||||
thunar \
|
thunar \
|
||||||
|
|
|
@ -460,6 +460,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **26.09.24:** - Swap from firefox to chromium on Alpine images.
|
||||||
* **23.05.24:** - Rebase Alpine to 3.20, document Nvidia support.
|
* **23.05.24:** - Rebase Alpine to 3.20, document Nvidia support.
|
||||||
* **22.04.24:** - Rebase Ubuntu to Noble.
|
* **22.04.24:** - Rebase Ubuntu to Noble.
|
||||||
* **16.04.24:** - Add docs on PRoot Apps.
|
* **16.04.24:** - Add docs on PRoot Apps.
|
||||||
|
|
|
@ -212,6 +212,7 @@ app_setup_block: |
|
||||||
|
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
|
- { date: "26.09.24:", desc: "Swap from firefox to chromium on Alpine images." }
|
||||||
- { date: "23.05.24:", desc: "Rebase Alpine to 3.20, document Nvidia support." }
|
- { date: "23.05.24:", desc: "Rebase Alpine to 3.20, document Nvidia support." }
|
||||||
- { date: "22.04.24:", desc: "Rebase Ubuntu to Noble." }
|
- { date: "22.04.24:", desc: "Rebase Ubuntu to Noble." }
|
||||||
- { date: "16.04.24:", desc: "Add docs on PRoot Apps." }
|
- { date: "16.04.24:", desc: "Add docs on PRoot Apps." }
|
||||||
|
|
|
@ -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…
Reference in New Issue