jason 355e619a66 🗃️ 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/01-php.sh
rootfs/usr/local/etc/docker/init.d/05-php-fpm.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:12:40 -04:00
2025-02-04 09:29:38 -05:00
2024-11-19 13:42:42 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-10-09 10:53:02 -04:00
2025-09-16 19:38:11 -04:00
2025-09-16 19:38:11 -04:00
2025-09-16 19:38:11 -04:00
2025-09-16 19:38:11 -04:00
2025-11-23 08:48:06 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-11-29 11:04:45 -05:00
2025-09-05 13:36:29 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-10-09 10:53:02 -04:00
2026-05-05 14:35:42 -04:00

👋 Welcome to php 🚀

Description

Install my system scripts

 sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
 sudo systemmgr --config && sudo systemmgr install scripts  

Automatic install/update

dockermgr update php

Install and run container

mkdir -p "$HOME/.local/share/srv/docker/php/volumes"
git clone "https://github.com/dockermgr/php" "$HOME/.local/share/CasjaysDev/dockermgr/php"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/php/rootfs/." "$HOME/.local/share/srv/docker/php/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-php \
--hostname php \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-php/volumes/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-php/volumes/config:/config:z" \
-p 80:80 \
casjaysdevdocker/php:latest

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/php
    container_name: casjaysdevdocker-php
    environment:
      - TZ=America/New_York
      - HOSTNAME=php
    volumes:
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-php/volumes/data:/data:z"
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-php/volumes/config:/config:z"
    ports:
      - 80:80
    restart: always

Get source files

dockermgr download src casjaysdevdocker/php

OR

git clone "https://github.com/casjaysdevdocker/php" "$HOME/Projects/github/casjaysdevdocker/php"

Build container

cd "$HOME/Projects/github/casjaysdevdocker/php"
buildx 

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

S
Description
Repo for php
Readme 164 KiB
Languages
Shell 94%
Dockerfile 6%