File tree Expand file tree Collapse file tree
root/etc/s6-overlay/s6-rc.d Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 https://github.com/selkies-project/selkies.git \
1717 /src && \
1818 cd /src && \
19- git checkout -f 553b86971550565774c54580de4e017e41b60c08
19+ git checkout -f 58206d48e0e85d2e993ef5486d65455602d908ea
2020
2121RUN \
2222 echo "**** build frontend ****" && \
@@ -171,6 +171,7 @@ RUN \
171171 xserver-xorg-video-intel \
172172 xserver-xorg-video-nouveau \
173173 xserver-xorg-video-qxl \
174+ xsettingsd \
174175 xterm \
175176 xutils \
176177 xvfb \
@@ -182,7 +183,7 @@ RUN \
182183 | awk '/tag_name/{print $4;exit}' FS='[""]' ) && \
183184 curl -o \
184185 /tmp/selkies.tar.gz -L \
185- "https://github.com/selkies-project/selkies/archive/553b86971550565774c54580de4e017e41b60c08 .tar.gz" && \
186+ "https://github.com/selkies-project/selkies/archive/58206d48e0e85d2e993ef5486d65455602d908ea .tar.gz" && \
186187 cd /tmp && \
187188 tar xf selkies.tar.gz && \
188189 cd selkies-* && \
Original file line number Diff line number Diff line change 1616 https://github.com/selkies-project/selkies.git \
1717 /src && \
1818 cd /src && \
19- git checkout -f 553b86971550565774c54580de4e017e41b60c08
19+ git checkout -f 58206d48e0e85d2e993ef5486d65455602d908ea
2020
2121RUN \
2222 echo "**** build frontend ****" && \
@@ -169,6 +169,7 @@ RUN \
169169 xserver-xorg-video-ati \
170170 xserver-xorg-video-nouveau \
171171 xserver-xorg-video-qxl \
172+ xsettingsd \
172173 xterm \
173174 xutils \
174175 xvfb \
@@ -180,7 +181,7 @@ RUN \
180181 | awk '/tag_name/{print $4;exit}' FS='[""]') && \
181182 curl -o \
182183 /tmp/selkies.tar.gz -L \
183- "https://github.com/selkies-project/selkies/archive/553b86971550565774c54580de4e017e41b60c08 .tar.gz" && \
184+ "https://github.com/selkies-project/selkies/archive/58206d48e0e85d2e993ef5486d65455602d908ea .tar.gz" && \
184185 cd /tmp && \
185186 tar xf selkies.tar.gz && \
186187 cd selkies-* && \
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ All application settings are passed via environment variables:
3434| PASSWORD | HTTP Basic auth password, abc is default. If unset there will be no auth |
3535| SUBFOLDER | Subfolder for the application if running a subfolder reverse proxy, need both slashes IE ` /subfolder/ ` |
3636| TITLE | The page title displayed on the web browser, default "Selkies - webrtc". |
37- | FM_HOME | This is the home directory (landing) for the file manager, default "/config". |
3837| START_DOCKER | If set to false a container with privilege will not automatically start the DinD Docker setup. |
3938| DISABLE_IPV6 | If set to true or any value this will disable IPv6 |
4039| LC_ALL | Set the Language for the container to run as IE ` fr_FR.UTF-8 ` ` ar_AE.UTF-8 ` |
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ full_custom_readme: |
3838 | PASSWORD | HTTP Basic auth password, abc is default. If unset there will be no auth |
3939 | SUBFOLDER | Subfolder for the application if running a subfolder reverse proxy, need both slashes IE `/subfolder/` |
4040 | TITLE | The page title displayed on the web browser, default "Selkies - webrtc". |
41- | FM_HOME | This is the home directory (landing) for the file manager, default "/config". |
4241 | START_DOCKER | If set to false a container with privilege will not automatically start the DinD Docker setup. |
4342 | DISABLE_IPV6 | If set to true or any value this will disable IPv6 |
4443 | LC_ALL | Set the Language for the container to run as IE `fr_FR.UTF-8` `ar_AE.UTF-8` |
Original file line number Diff line number Diff line change 1+ #!/usr/bin/with-contenv bash
2+
3+ # create default xsettings
4+ if [ ! -f "${HOME}/.xsettingsd" ]; then
5+ echo "Xft/DPI 98304" > "${HOME}/.xsettingsd"
6+ fi
7+ chown abc:abc "${HOME}/.xsettingsd"
8+
9+ # run
10+ exec s6-setuidgid abc \
11+ xsettingsd
Original file line number Diff line number Diff line change 1+ longrun
You can’t perform that action at this time.
0 commit comments