Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie

# set version label
ARG BUILD_DATE
Expand Down Expand Up @@ -52,6 +52,6 @@ RUN \
COPY /root /

# ports and volumes
EXPOSE 3000
EXPOSE 3001

VOLUME /config
4 changes: 2 additions & 2 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debiantrixie

# set version label
ARG BUILD_DATE
Expand Down Expand Up @@ -52,6 +52,6 @@ RUN \
COPY /root /

# ports and volumes
EXPOSE 3000
EXPOSE 3001

VOLUME /config
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ services:
container_name: vscodium
cap_add:
- IPC_LOCK
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
Expand All @@ -243,7 +241,6 @@ services:
docker run -d \
--name=vscodium \
--cap-add=IPC_LOCK \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
Expand All @@ -268,7 +265,6 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `-v /config` | Users home directory in the container, stores local files and settings |
| `--shm-size=` | This is needed for electron applications to function properly. |
| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. VSCodium runs in no-sandbox mode without it. |
| `--cap-add=IPC_LOCK` | Required for keyring functionality. |

### Portainer notice
Expand Down Expand Up @@ -437,6 +433,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **22.09.25:** - Rebase to Debian Trixie.
* **24.07.25:** - Swap from thunar to caja for filebrowser.
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
Expand Down
4 changes: 1 addition & 3 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ custom_params:
cap_add_param: true
cap_add_param_vars:
- {cap_add_var: "IPC_LOCK", desc: "Required for keyring functionality."}
opt_security_opt_param: true
opt_security_opt_param_vars:
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. VSCodium runs in no-sandbox mode without it."}
# Selkies blurb settings
selkies_blurb: true
show_nvidia: true
Expand Down Expand Up @@ -111,6 +108,7 @@ init_diagram: |
"vscodium:latest" <- Base Images
# changelog
changelogs:
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
- {date: "24.07.25:", desc: "Swap from thunar to caja for filebrowser."}
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
- {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
Expand Down
2 changes: 1 addition & 1 deletion root/defaults/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<item label="Terminal" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/st</command></action></item>
<item label="VSCodium" icon="/usr/share/pixmaps/vscodium.png"><action name="Execute"><command>/usr/bin/codium</command></action></item>
<item label="Chromium" icon="/usr/share/icons/hicolor/48x48/apps/chromium.png"><action name="Execute"><command>/usr/bin/chromium</command></action></item>
<item label="File Manager" icon="/usr/share/icons/Adwaita/48x48/legacy/system-file-manager.png"><action name="Execute"><command>/usr/bin/caja</command></action></item>
<item label="File Manager" icon="/usr/share/icons/Adwaita/symbolic/legacy/system-file-manager-symbolic.svg"><action name="Execute"><command>/usr/bin/caja</command></action></item>
</menu>
</openbox_menu>
7 changes: 1 addition & 6 deletions root/usr/bin/chromium
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,4 @@ 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} --password-store=basic "$@"
else
${BIN} --password-store=basic --no-sandbox --test-type "$@"
fi
${BIN} --password-store=basic --no-sandbox --test-type "$@"
8 changes: 1 addition & 7 deletions root/usr/bin/codium
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

BIN=/usr/share/codium/bin/codium

# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp:.0' /proc/1/status; then
dbus-launch ${BIN} \
"$@"
else
dbus-launch ${BIN} \
dbus-launch ${BIN} \
--no-sandbox \
"$@"
fi