casjay
a34f3925cd
🗃️ Update codebase 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-06-26 23:49:01 -04:00
casjay
4bececec89
🐛 Fix __create_service_env to write .local.sh to disk 🐛
...
The .local.sh block defined stub functions in memory but never
wrote the file to disk, so __file_exists_with_content always
failed and __create_service_env returned non-zero on every run.
Fix: use a heredoc to write the stub functions into .local.sh.
- rootfs/usr/local/etc/docker/init.d/00-aria2c.sh: write .local.sh
via heredoc in __create_service_env; bump version to 202606261600-git
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2026-06-26 20:59:18 -04:00
casjay
5894acaf87
🐛 Fix duplicate 2>/dev/null in entrypoint.sh /etc/hosts line 🐛
...
The grep -vF line that appends /usr/local/etc/hosts entries had a
duplicate 2>/dev/null redirect after the append operator, which is
a no-op but clutters the script. Synced from template.
- rootfs/usr/local/bin/entrypoint.sh: remove duplicate 2>/dev/null
from grep -vF /etc/hosts append line; bump version to 202606261500-git
rootfs/usr/local/bin/entrypoint.sh
2026-06-26 18:37:14 -04:00
casjay
d89274dd1b
🐛 Update entrypoint.sh and functions library from current template 🐛
...
Stale copies called __initialize_default_templates, __initialize_config_dir,
and __initialize_data_dir which are not in the old functions library,
causing container startup failures. Replaced with current template
versions (202606041210-git) which no longer call those missing functions.
- rootfs/usr/local/bin/entrypoint.sh: update to current template
- rootfs/usr/local/etc/docker/functions/entrypoint.sh: update to current template
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-06-05 18:24:20 -04:00
casjay
72fe4eb95a
🐛 Fix resolv.conf: add search . and ndots:0 to block domain search 🐛
...
--domainname on the container sets the kernel domainname, which c-ares
uses to infer a search domain even when /etc/resolv.conf has no search
line. This caused c-ares to query github.com.casjay.work AAAA and get
the host's own IPv6 address, routing all outbound HTTPS to the local
nginx instead of the real server.
Adding 'search .' and 'options ndots:0' explicitly disables search
domain inference regardless of the kernel domainname setting.
- rootfs/usr/local/etc/resolv.conf: add search . and options ndots:0
rootfs/usr/local/etc/resolv.conf
2026-06-05 14:31:40 -04:00
casjay
fdc794b6cb
🐛 Fix container DNS: ship resolv.conf without search domain 🐛
...
Hosts with a search domain cause containers to inherit it. When the
zone has a wildcard AAAA record, public hostnames resolve to the host's
own IPv6 address instead of the real server, breaking all outbound
HTTPS and DNS from inside the container.
The entrypoint already has a hook: if /usr/local/etc/resolv.conf
exists it replaces /etc/resolv.conf at container startup. Ship a
clean resolv.conf with Cloudflare + Google DNS and no search domain
so container DNS is always correct regardless of host configuration.
- rootfs/usr/local/etc/resolv.conf: new file — clean DNS, no search domain
rootfs/usr/local/etc/resolv.conf
2026-06-05 12:32:35 -04:00
casjay
6f4fc68162
♻️ Migrate aria2 to /config/ source-of-truth architecture ♻️
...
Migrate aria2 Docker image to the new build-time config architecture.
- rootfs/root/docker/setup/03-files.sh: rewrite to canonical form with /tmp/bin, /tmp/var, /tmp/etc, /tmp/usr handlers; remove template-files copy block
- rootfs/usr/local/etc/docker/functions/entrypoint.sh: update to latest template with __init_service_conf, __find_php_ini, __find_php_bin helpers
- rootfs/usr/local/etc/docker/init.d/*.sh: fix $(basename) UUOC → ${var##*/}; move inline comments above code lines; remove commented-out dead code
- rootfs/usr/local/share/template-files/: delete entire directory; config files now deployed via /tmp/etc/ at build time
rootfs/root/docker/setup/03-files.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/00-directory.sh
rootfs/usr/local/share/template-files/config/env/examples/addresses.sh
rootfs/usr/local/share/template-files/config/env/examples/certbot.sh
rootfs/usr/local/share/template-files/config/env/examples/couchdb.sh
rootfs/usr/local/share/template-files/config/env/examples/dockerd.sh
rootfs/usr/local/share/template-files/config/env/examples/global.sh
rootfs/usr/local/share/template-files/config/env/examples/healthcheck.sh
rootfs/usr/local/share/template-files/config/env/examples/mariadb.sh
rootfs/usr/local/share/template-files/config/env/examples/mongodb.sh
rootfs/usr/local/share/template-files/config/env/examples/networking.sh
rootfs/usr/local/share/template-files/config/env/examples/other.sh
rootfs/usr/local/share/template-files/config/env/examples/php.sh
rootfs/usr/local/share/template-files/config/env/examples/postgres.sh
rootfs/usr/local/share/template-files/config/env/examples/redis.sh
rootfs/usr/local/share/template-files/config/env/examples/services.sh
rootfs/usr/local/share/template-files/config/env/examples/ssl.sh
rootfs/usr/local/share/template-files/config/env/examples/supabase.sh
rootfs/usr/local/share/template-files/config/env/examples/webservers.sh
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
rootfs/usr/local/share/template-files/config/.gitkeep
rootfs/usr/local/share/template-files/data/.gitkeep
rootfs/usr/local/share/template-files/defaults/.gitkeep
2026-06-04 14:35:45 -04:00
casjay
11a2ae380b
🗃️ Updated the functions file 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-05-24 12:26:22 -04:00
casjay
4b80ec9839
🔧 Update configuration files 🔧
...
AI.md
CLAUDE.md
Dockerfile
.env.scripts
IDEA.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/06-post.sh
rootfs/root/docker/setup/07-cleanup.sh
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
TODO.AI.md
2026-05-18 15:38:20 -04:00
casjay
6b94fff43d
🗃️ Removed the .claude/settings.local.json 🗃️
...
CLAUDE.md
Dockerfile
.env.scripts
.gitattributes
.gitea/workflows/docker.yaml
.gitignore
LICENSE.md
PLAN.md
README.md
rootfs/root/docker/setup/05-custom.sh
rootfs/tmp/etc/nginx/nginx.conf
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/pkmgr
rootfs/usr/local/etc/docker/bin/
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
2026-05-12 20:05:30 -04:00
casjay
0486a0d49d
🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
...
Update the embedded entrypoint copies in rootfs/ to match the
upstream template change. Internal state files renamed to dotfiles
so they're not matched by `/run/*.pid` cleanup globs:
- /run/init.d/entrypoint.pid -> /run/.entrypoint.pid
- /run/no_exit.pid -> /run/.no_exit.pid
- /run/backup.pid -> /run/.backup.pid
- /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid
Per-service PIDs in /run/init.d/ are unchanged.
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
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/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:11:07 -04:00
casjay
5ab2395dde
🗃️ Update codebase 🗃️
...
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-11-30 16:25:13 -05:00
casjay
63e7d001ed
🔄 Updated entrypoint script in docker functions 🔄
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-11-30 15:59:40 -05:00
casjay
515c859237
🗃️ Fixed the entrypoint scripts 🗃️
...
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
2025-11-29 12:36:28 -05:00
casjay
74e7fecc50
🗃️ Updated Dockerfile* and .env.scripts* 🗃️
...
Dockerfile
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-11-29 11:03:59 -05:00
casjay
0ee3b436ae
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
2025-09-20 06:38:47 -04:00
casjay
379ac2e862
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-20 05:27:07 -04:00
casjay
88d281da76
🗃️ Committing everything that changed 🗃️
...
Dockerfile
.env.scripts
.gitattributes
.gitignore
rootfs/.gitea/
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-16 19:36:44 -04:00
casjay
ba1ec6d69f
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-16 09:09:15 -04:00
casjay
d692502f33
🗃️ Committing everything that changed 🗃️
...
Jenkinsfile
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-05 13:35:01 -04:00
casjay
bd80090e5e
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 19:07:31 -04:00
casjay
1b17b5711c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 18:57:14 -04:00
casjay
994211c426
🗃️ Committing everything that changed 🗃️
...
Dockerfile
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 18:25:48 -04:00
casjay
9335999df1
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 18:09:41 -04:00
casjay
1a9d779ebe
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 17:57:00 -04:00
casjay
c91bcfaeeb
🗃️ Committing everything that changed 🗃️
...
rootfs/tmp/etc/aria2/aria-ng.config.js
2025-05-13 17:53:09 -04:00
casjay
5c19c0e5c1
🗃️ Committing everything that changed 🗃️
...
rootfs/tmp/etc/aria2/aria-ng.config.js
rootfs/tmp/etc/nginx/nginx.conf
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
2025-05-13 17:50:29 -04:00
casjay
0d671d8ee2
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 17:40:44 -04:00
casjay
0cb473e7e0
🗃️ Committing everything that changed 🗃️
...
.env.scripts
rootfs/tmp/etc/aria2/aria2.conf
rootfs/usr/local/bin/tracker.sh
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 17:21:45 -04:00
casjay
0f85fa867c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 16:53:15 -04:00
casjay
bdc3e13c3b
🗃️ Committing everything that changed 🗃️
...
rootfs/tmp/etc/nginx/nginx.conf
2025-05-13 16:49:55 -04:00
casjay
1fec9d4373
🗃️ Committing everything that changed 🗃️
...
Dockerfile
.env.scripts
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 16:45:28 -04:00
casjay
6a157bb7f9
🗃️ 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
2025-05-13 16:22:29 -04:00
casjay
a6eb018566
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:08:45 -05:00
casjay
bedf8b19ff
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:05:23 -05:00
casjay
c7adb482e6
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:00:27 -05:00
casjay
4e270c596b
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:57:55 -05:00
casjay
87540ebf7f
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:56:50 -05:00
casjay
66a1b3c370
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:54:43 -05:00
casjay
c3664221ad
🗃️ Committing everything that changed 🗃️
...
Dockerfile
.env.scripts
rootfs/root/
2025-02-04 21:48:34 -05:00
casjay
0b0a89094a
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-01-10 23:15:53 -05:00
casjay
ad058c76bc
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-09-24 11:02:59 -04:00
casjay
6e6836165c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 16:33:50 -04:00
casjay
0940f498c8
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 15:37:35 -04:00
casjay
6a026aa874
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 15:00:07 -04:00
casjay
2fb794510e
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 14:50:59 -04:00
casjay
5b570fa440
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 14:49:25 -04:00
casjay
a0a0531e1d
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 14:46:20 -04:00
casjay
b3c970b1dd
🗃️ Fixed: rootfs/usr/local/etc/docker/functions/entrypoint.sh 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-07-31 12:25:46 -04:00
casjay
84273dc4c8
🗃️ Fixed: rootfs/usr/local/etc/docker/functions/entrypoint.sh 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-07-29 18:21:03 -04:00