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
6 changes: 4 additions & 2 deletions 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 Expand Up @@ -41,6 +43,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 @@ -221,8 +221,6 @@ services:
msedge:
image: lscr.io/linuxserver/msedge:latest
container_name: msedge
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
Expand All @@ -242,7 +240,6 @@ services:
```bash
docker run -d \
--name=msedge \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
Expand All @@ -269,7 +266,6 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e EDGE_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 required for Edge to launch and function. |
| `--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. Edge runs in no-sandbox mode without it. |

## Environment variables from files (Docker secrets)

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

## Versions

* **22.09.25:** - Rebase to Debian Trixie.
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
* **04.02.25:** - Clean up Singletons if container is shut down while windows are open.
* **25.04.24:** - Initial release.
7 changes: 1 addition & 6 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ development_versions: false
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_env: true
param_env_vars:
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
param_usage_include_vols: true
param_volumes:
- {vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores local files and settings"}
Expand All @@ -32,9 +29,6 @@ custom_params:
opt_param_usage_include_env: true
opt_param_env_vars:
- {env_var: "EDGE_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. Edge runs in no-sandbox mode without it."}
# Selkies blurb settings
selkies_blurb: true
show_nvidia: true
Expand Down Expand Up @@ -115,6 +109,7 @@ init_diagram: |
"msedge:latest" <- Base Images
# changelog
changelogs:
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
- {date: "04.02.25:", desc: "Clean up Singletons if container is shut down while windows are open."}
- {date: "25.04.24:", desc: "Initial release."}
9 changes: 1 addition & 8 deletions root/usr/bin/microsoft-edge
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,8 @@ if ! pgrep msedge > /dev/null;then
rm -f $HOME/.config/microsoft-edge/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 \
"$@" > /dev/null 2>&1
else
${BIN} \
${BIN} \
--password-store=basic \
--no-sandbox \
--test-type \
"$@" > /dev/null 2>&1
fi