🗃️ Committing everything that changed 🗃️

Dockerfile
.env.scripts
.gitattributes
.gitea/workflows/docker.yaml
.gitignore
LICENSE.md
README.md
rootfs/root/docker/setup/00-init.sh
rootfs/root/docker/setup/01-system.sh
rootfs/root/docker/setup/02-packages.sh
rootfs/root/docker/setup/03-files.sh
rootfs/root/docker/setup/04-users.sh
rootfs/root/docker/setup/05-custom.sh
rootfs/root/docker/setup/06-post.sh
rootfs/root/docker/setup/07-cleanup.sh
rootfs/tmp/
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/pkmgr
rootfs/usr/local/etc/docker/env/00-directory.sh
rootfs/usr/local/etc/docker/env/addresses.sh
rootfs/usr/local/etc/docker/env/certbot.sh
rootfs/usr/local/etc/docker/env/couchdb.sh
rootfs/usr/local/etc/docker/env/default.sample
rootfs/usr/local/etc/docker/env/global.sh
rootfs/usr/local/etc/docker/env/healthcheck.sh
rootfs/usr/local/etc/docker/env/mariadb.sh
rootfs/usr/local/etc/docker/env/mongodb.sh
rootfs/usr/local/etc/docker/env/networking.sh
rootfs/usr/local/etc/docker/env/other.sh
rootfs/usr/local/etc/docker/env/php.sh
rootfs/usr/local/etc/docker/env/postgres.sh
rootfs/usr/local/etc/docker/env/redis.sh
rootfs/usr/local/etc/docker/env/services.sh
rootfs/usr/local/etc/docker/env/ssl.sh
rootfs/usr/local/etc/docker/env/supabase.sh
rootfs/usr/local/etc/docker/env/webservers.sh
rootfs/usr/local/etc/docker/env/zz-entrypoint.sh
rootfs/usr/local/etc/docker/functions/
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
rootfs/usr/local/share/template-files/config/aria2/aria2.conf
rootfs/usr/local/share/template-files/config/aria2/aria2.session
rootfs/usr/local/share/template-files/config/aria2/aria-ng.config.js
rootfs/usr/local/share/template-files/config/aria2/scripts/post-hook.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/
rootfs/usr/local/share/template-files/config/.gitkeep
rootfs/usr/local/share/template-files/config/nginx/mime.types
rootfs/usr/local/share/template-files/config/nginx/nginx.conf
This commit is contained in:
casjay
2025-05-13 16:22:29 -04:00
parent a6eb018566
commit 6a157bb7f9
50 changed files with 3332 additions and 532 deletions

View File

@@ -1,8 +1,7 @@
# syntax=docker/dockerfile:1
# Docker image for aria2 using the alpine template
ARG IMAGE_NAME="aria2"
ARG PHP_SERVER="aria2"
ARG BUILD_DATE="202502042133"
ARG BUILD_DATE="202505131548"
ARG LANGUAGE="en_US.UTF-8"
ARG TIMEZONE="America/New_York"
ARG WWW_ROOT_DIR="/usr/local/share/httpd/default"
@@ -71,7 +70,8 @@ WORKDIR /root
COPY ./rootfs/usr/local/bin/. /usr/local/bin/
RUN echo "Updating the system and ensuring bash is installed"; \
RUN set -e; \
echo "Updating the system and ensuring bash is installed"; \
pkmgr update;pkmgr install bash
RUN set -e; \
@@ -136,7 +136,7 @@ RUN echo "Updating system files "; \
RUN echo "Custom Settings"; \
$SHELL_OPTS; \
echo ""
echo ""
RUN echo "Setting up users and scripts "; \
$SHELL_OPTS; \
@@ -153,7 +153,7 @@ RUN echo "Setting OS Settings "; \
RUN echo "Custom Applications"; \
$SHELL_OPTS; \
echo ""
echo ""
RUN echo "Running custom commands"; \
if [ -f "/root/docker/setup/05-custom.sh" ];then echo "Running the custom script";/root/docker/setup/05-custom.sh||{ echo "Failed to execute /root/docker/setup/05-custom.sh" && exit 10; };echo "Done running the custom script";fi; \