Skip to content

Commit 3dcf0d9

Browse files
committed
instant scaling bookworm
1 parent a49fc19 commit 3dcf0d9

10 files changed

Lines changed: 18 additions & 6 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f 553b86971550565774c54580de4e017e41b60c08
19+
git checkout -f 58206d48e0e85d2e993ef5486d65455602d908ea
2020

2121
RUN \
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-* && \

Dockerfile.aarch64

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f 553b86971550565774c54580de4e017e41b60c08
19+
git checkout -f 58206d48e0e85d2e993ef5486d65455602d908ea
2020

2121
RUN \
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-* && \

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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` |

readme-vars.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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` |

root/etc/s6-overlay/s6-rc.d/svc-xsettingsd/dependencies.d/init-services

Whitespace-only changes.

root/etc/s6-overlay/s6-rc.d/svc-xsettingsd/dependencies.d/svc-nginx

Whitespace-only changes.

root/etc/s6-overlay/s6-rc.d/svc-xsettingsd/dependencies.d/svc-xorg

Whitespace-only changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
longrun

root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-xsettingsd

Whitespace-only changes.

0 commit comments

Comments
 (0)