jason
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
jason
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
jason
11a2ae380b
🗃️ Updated the functions file 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-05-24 12:26:22 -04:00
jason
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
jason
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
jason
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
jason
4caae02c05
🗃️ readme: rename rootfs/ to volumes/ for compose context 🗃️
...
Aligns README install/run snippets with the new convention split:
rootfs/ for Dockerfile-build content (image filesystem), volumes/
for docker-compose host bind-mounts. Compose mounts, host bind
paths, and runtime data dirs are renamed; Dockerfile COPY/ADD
sources (where present) are preserved.
README.md
2026-05-05 14:34:34 -04:00
jason
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
jason
63e7d001ed
🔄 Updated entrypoint script in docker functions 🔄
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-11-30 15:59:40 -05:00
jason
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
jason
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
jason
828083b46f
🗃️ Fixed the .gitignore file 🗃️
...
.gitignore
2025-11-23 08:47:14 -05:00
jason
74fcf7ba25
🗃️ Fixed the .gitignore file 🗃️
...
.gitignore
Dockerfile
2025-10-31 12:33:35 -04:00
jason
4b582958da
🗃️ Fixed the .gitignore file 🗃️
...
.gitignore
2025-10-22 13:05:02 -04:00
jason
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
jason
379ac2e862
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-20 05:27:07 -04:00
jason
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
jason
966a1c9476
🗃️ Committing everything that changed 🗃️
...
.env.scripts
2025-09-16 10:22:02 -04:00
jason
ba1ec6d69f
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-09-16 09:09:15 -04:00
jason
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
jason
bd80090e5e
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 19:07:31 -04:00
jason
1b17b5711c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 18:57:14 -04:00
jason
994211c426
🗃️ Committing everything that changed 🗃️
...
Dockerfile
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 18:25:48 -04:00
jason
9335999df1
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 18:09:41 -04:00
jason
1a9d779ebe
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 17:57:00 -04:00
jason
c91bcfaeeb
🗃️ Committing everything that changed 🗃️
...
rootfs/tmp/etc/aria2/aria-ng.config.js
2025-05-13 17:53:09 -04:00
jason
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
jason
0d671d8ee2
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 17:40:44 -04:00
jason
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
jason
0f85fa867c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/init.d/00-aria2c.sh
2025-05-13 16:53:15 -04:00
jason
bdc3e13c3b
🗃️ Committing everything that changed 🗃️
...
rootfs/tmp/etc/nginx/nginx.conf
2025-05-13 16:49:55 -04:00
jason
1fec9d4373
🗃️ Committing everything that changed 🗃️
...
Dockerfile
.env.scripts
rootfs/usr/local/bin/entrypoint.sh
2025-05-13 16:45:28 -04:00
jason
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
jason
a6eb018566
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:08:45 -05:00
jason
bedf8b19ff
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:05:23 -05:00
jason
c7adb482e6
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 22:00:27 -05:00
jason
4e270c596b
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:57:55 -05:00
jason
87540ebf7f
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:56:50 -05:00
jason
66a1b3c370
🗃️ Committing everything that changed 🗃️
...
rootfs/root/docker/setup/05-custom.sh
2025-02-04 21:54:43 -05:00
jason
c3664221ad
🗃️ Committing everything that changed 🗃️
...
Dockerfile
.env.scripts
rootfs/root/
2025-02-04 21:48:34 -05:00
jason
99a6e12330
🗃️ Committing everything that changed 🗃️
...
.gitea/workflows/docker.yaml
2025-02-04 09:28:16 -05:00
jason
0b0a89094a
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2025-01-10 23:15:53 -05:00
jason
ad058c76bc
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-09-24 11:02:59 -04:00
jason
6e6836165c
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 16:33:50 -04:00
jason
5d05641d81
➕ Added: .gitea/ ➕
...
Added: .gitea/
2024-08-01 16:06:22 -04:00
jason
4afd02e6e8
🗃️ Committing everything that changed 🗃️
...
.gitea/workflows/docker.yaml
2024-08-01 15:55:11 -04:00
jason
0940f498c8
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 15:37:35 -04:00
jason
6a026aa874
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 15:00:07 -04:00
jason
2fb794510e
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 14:50:59 -04:00
jason
5b570fa440
🗃️ Committing everything that changed 🗃️
...
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-08-01 14:49:25 -04:00