mirror of
https://github.com/casjaysdevdocker/mysql
synced 2026-06-23 20:01:02 -04:00
9f70202aa8883c8e64061725f1635a4588ec21b1
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-mysqld.sh rootfs/usr/local/etc/docker/init.d/99-nginx.sh rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
👋 Welcome to mysql 🚀
mysql README
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 mysql
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/mysql/volumes"
git clone "https://github.com/dockermgr/mysql" "$HOME/.local/share/CasjaysDev/dockermgr/mysql"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/mysql/rootfs/." "$HOME/.local/share/srv/docker/mysql/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-mysql \
--hostname mysql \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-mysql/volumes/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-mysql/volumes/config:/config:z" \
-p 80:80 \
casjaysdevdocker/mysql:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/mysql
container_name: casjaysdevdocker-mysql
environment:
- TZ=America/New_York
- HOSTNAME=mysql
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-mysql/volumes/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-mysql/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/mysql
OR
git clone "https://github.com/casjaysdevdocker/mysql" "$HOME/Projects/github/casjaysdevdocker/mysql"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/mysql"
buildx
Authors
Description
Languages
Shell
92.1%
Dockerfile
6.4%
PHP
1.5%