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: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
# syntax=docker/dockerfile:1

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

# set version label
ARG BUILD_DATE
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm
# syntax=docker/dockerfile:1

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

# set version label
ARG BUILD_DATE
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,6 @@ services:
chromium:
image: lscr.io/linuxserver/chromium:latest
container_name: chromium
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
Expand All @@ -250,7 +248,6 @@ services:
```bash
docker run -d \
--name=chromium \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
Expand All @@ -277,7 +274,6 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e CHROME_CLI=https://www.linuxserver.io/` | Specify one or multiple Chromium CLI flags, this string will be passed to the application in full. |
| `-v /config` | Users home directory in the container, stores local files and settings |
| `--shm-size=` | This is needed for any modern website to function like youtube. |
| `--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. Chromium runs in no-sandbox test mode without it. |

## Environment variables from files (Docker secrets)

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

## Versions

* **22.09.25:** - Rebase to Debian Trixie.
* **01.07.25:** - Add Kasm branch.
* **24.06.25:** - Rebase to Selkies.
* **03.04.25:** - Update chromium launch options to improve performance.
Expand Down
4 changes: 1 addition & 3 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ custom_params:
opt_param_usage_include_env: true
opt_param_env_vars:
- {env_var: "CHROME_CLI", env_value: "https://www.linuxserver.io/", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."}
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. Chromium runs in no-sandbox test mode without it."}
# Selkies blurb settings
selkies_blurb: true
show_nvidia: true
Expand Down Expand Up @@ -115,6 +112,7 @@ init_diagram: |
"chromium:latest" <- Base Images
# changelog
changelogs:
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
- {date: "01.07.25:", desc: "Add Kasm branch."}
- {date: "24.06.25:", desc: "Rebase to Selkies."}
- {date: "03.04.25:", desc: "Update chromium launch options to improve performance."}
Expand Down