File size: 361 Bytes
42b3657 db004ed 42b3657 db004ed 42b3657 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM lscr.io/linuxserver/msedge:latest
# 1. Environment Configuration
ENV PUID=1000
ENV PGID=1000
ENV TZ=Etc/UTC
# 2. KasmVNC Settings
ENV KASM_PORT=3000
ENV TITLE="Edge"
ENV FM_HOME=/config
# 3. Permission Fix (Prevents Crash Loop)
RUN mkdir -p /config && \
chown -R 1000:1000 /config && \
chmod -R 777 /config
# Expose the internal port
EXPOSE 3000 |