Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit 09d6f5e

Browse files
committed
adding file manager to web interface the user can auth into using PAM
1 parent 644b79e commit 09d6f5e

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,14 @@ RUN \
6767
echo "**** install build deps ****" && \
6868
apk add --no-cache \
6969
curl \
70+
g++ \
71+
gcc \
72+
linux-pam-dev \
73+
make \
7074
nodejs \
71-
npm
75+
npm \
76+
python3
77+
7278

7379
RUN \
7480
echo "**** grab source ****" && \
@@ -79,7 +85,7 @@ RUN \
7985
fi && \
8086
curl -o \
8187
/tmp/gclient.tar.gz -L \
82-
"https://github.com/linuxserver/gclient/archive/${GCLIENT_RELEASE}.tar.gz" && \
88+
"https://github.com/linuxserver/gclient/archive/file-explorer.tar.gz" && \
8389
tar xf \
8490
/tmp/gclient.tar.gz -C \
8591
/gclient/ --strip-components=1

Dockerfile.aarch64

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,13 @@ RUN \
6767
echo "**** install build deps ****" && \
6868
apk add --no-cache \
6969
curl \
70+
g++ \
71+
gcc \
72+
linux-pam-dev \
73+
make \
7074
nodejs \
71-
npm
75+
npm \
76+
python3
7277

7378
RUN \
7479
echo "**** grab source ****" && \
@@ -79,7 +84,7 @@ RUN \
7984
fi && \
8085
curl -o \
8186
/tmp/gclient.tar.gz -L \
82-
"https://github.com/linuxserver/gclient/archive/${GCLIENT_RELEASE}.tar.gz" && \
87+
"https://github.com/linuxserver/gclient/archive/file-explorer.tar.gz" && \
8388
tar xf \
8489
/tmp/gclient.tar.gz -C \
8590
/gclient/ --strip-components=1

Dockerfile.armhf

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,13 @@ RUN \
6767
echo "**** install build deps ****" && \
6868
apk add --no-cache \
6969
curl \
70+
g++ \
71+
gcc \
72+
linux-pam-dev \
73+
make \
7074
nodejs \
71-
npm
75+
npm \
76+
python3
7277

7378
RUN \
7479
echo "**** grab source ****" && \
@@ -79,7 +84,7 @@ RUN \
7984
fi && \
8085
curl -o \
8186
/tmp/gclient.tar.gz -L \
82-
"https://github.com/linuxserver/gclient/archive/${GCLIENT_RELEASE}.tar.gz" && \
87+
"https://github.com/linuxserver/gclient/archive/file-explorer.tar.gz" && \
8388
tar xf \
8489
/tmp/gclient.tar.gz -C \
8590
/gclient/ --strip-components=1

root/etc/services.d/web/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/with-contenv bash
22

33
cd /gclient || exit
4-
exec \
4+
HOME="/config" exec \
55
s6-setuidgid abc node app.js

0 commit comments

Comments
 (0)