-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxime Leroy
committed
Jan 2, 2021
0 parents
commit 117fd7d
Showing
11 changed files
with
1,180 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.git | ||
.gitignore | ||
.github | ||
.gitattributes | ||
READMETEMPLATE.md | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
# ========================= | ||
# Operating System Files | ||
# ========================= | ||
|
||
# OSX | ||
# ========================= | ||
|
||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.12 | ||
|
||
# set version label | ||
ARG DOCKER_HUB_USER | ||
ARG IMAGE_BUILD_DATE | ||
ARG IMAGE_VERSION | ||
ARG FILEGATOR_RELEASE | ||
LABEL build_version="${DOCKER_HUB_USER} version:- ${IMAGE_VERSION} Build-date:- ${IMAGE_BUILD_DATE}" | ||
LABEL maintainer="${DOCKER_HUB_USER}" | ||
|
||
# install filegator | ||
RUN \ | ||
echo "**** install runtime packages ****" && \ | ||
apk add --no-cache --upgrade \ | ||
php7-ctype \ | ||
php7-curl \ | ||
php7-pdo_pgsql \ | ||
php7-pdo_sqlite \ | ||
php7-tokenizer \ | ||
php7-zip \ | ||
unzip \ | ||
curl && \ | ||
echo "**** install filegator ****" && \ | ||
if [ -z ${FILEGATOR_RELEASE+x} ]; then \ | ||
FILEGATOR_RELEASE=$(curl -sX GET "https://api.github.com/repos/filegator/filegator/releases/latest" \ | ||
| awk '/tag_name/{print $4;exit}' FS='[""]'); \ | ||
fi && \ | ||
curl -o \ | ||
/filegator.zip -L \ | ||
"https://github.com/filegator/filegator/releases/download/${FILEGATOR_RELEASE}/filegator_${FILEGATOR_RELEASE}.zip" && \ | ||
echo "**** cleanup ****" && \ | ||
rm -rf \ | ||
/tmp/* | ||
|
||
# add local files | ||
COPY root/ / |
Oops, something went wrong.